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

visible from userland any more.

Reviewed by:	luoqi
This commit is contained in:
jdp 1999-10-14 01:16:51 +00:00
parent b6ce49bfd2
commit 14e728d1e2

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)