In longjmp, call sigreturn instead of osigreturn. The latter isn't

visible from userland any more.

Reviewed by:	luoqi
This commit is contained in:
John Polstra 1999-10-14 01:16:51 +00:00
parent 655db34aa4
commit bdf5faebaf
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=52224

View File

@ -118,7 +118,7 @@ END(setjmp)
LEAF(longjmp, 2)
LDGP(pv)
stq a1, (( 0 + 4) * 8)(a0) /* save return value */
PCALL(osigreturn) /* use sigreturn to return */
PCALL(sigreturn) /* use sigreturn to return */
botch:
CALL(longjmperror)