From bdf5faebaf76292b1188897a6ab978f823203464 Mon Sep 17 00:00:00 2001 From: John Polstra Date: Thu, 14 Oct 1999 01:16:51 +0000 Subject: [PATCH] In longjmp, call sigreturn instead of osigreturn. The latter isn't visible from userland any more. Reviewed by: luoqi --- lib/libc/alpha/gen/setjmp.S | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/libc/alpha/gen/setjmp.S b/lib/libc/alpha/gen/setjmp.S index 950711de0bc2..fc2e16ad2a2b 100644 --- a/lib/libc/alpha/gen/setjmp.S +++ b/lib/libc/alpha/gen/setjmp.S @@ -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)