diff options
author | Philip Guenthe <guenther@cvs.openbsd.org> | 2011-11-22 21:13:31 +0000 |
---|---|---|
committer | Philip Guenthe <guenther@cvs.openbsd.org> | 2011-11-22 21:13:31 +0000 |
commit | e4ec26f0e2b58c6d24ed72b18ed6ad64ad7fbf22 (patch) | |
tree | 840338b7df523d0d4888563e5c568c42009293f9 /lib/libc/arch/m68k | |
parent | 22b74528e2a12e785f4b8987aea532f5584265ec (diff) |
sigstack() is long dead, and the compat sigaltstack syscall is gone too.
Correct the namespace protections for sigreturn(), sigwait(), and psignal()
ok millert@
Diffstat (limited to 'lib/libc/arch/m68k')
-rw-r--r-- | lib/libc/arch/m68k/gen/setjmp.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/arch/m68k/gen/setjmp.S b/lib/libc/arch/m68k/gen/setjmp.S index dac41aa5398..01ab2b39d76 100644 --- a/lib/libc/arch/m68k/gen/setjmp.S +++ b/lib/libc/arch/m68k/gen/setjmp.S @@ -1,4 +1,4 @@ -/* $OpenBSD: setjmp.S,v 1.4 2005/08/07 16:40:14 espie Exp $ */ +/* $OpenBSD: setjmp.S,v 1.5 2011/11/22 21:13:30 guenther Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. * All rights reserved. @@ -46,7 +46,7 @@ #include "DEFS.h" ENTRY(setjmp) - subl #12,sp /* space for sigstack args/rvals */ + subl #12,sp /* space for sigaltstack args/rvals */ clrl sp@ /* don't change it... */ movl sp,sp@(4) /* ...but return the current val */ jbsr _sigaltstack /* note: flags returned in sp@(8) */ |