diff options
Diffstat (limited to 'sysdeps/unix/sysv/linux/sparc/bits/sigaction.h')
-rw-r--r-- | sysdeps/unix/sysv/linux/sparc/bits/sigaction.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/sparc/bits/sigaction.h b/sysdeps/unix/sysv/linux/sparc/bits/sigaction.h index 3e4e855915..651b526a40 100644 --- a/sysdeps/unix/sysv/linux/sparc/bits/sigaction.h +++ b/sysdeps/unix/sysv/linux/sparc/bits/sigaction.h @@ -43,7 +43,7 @@ struct sigaction #define SA_SIGINFO 0x00000200 /* Invoke signal-catching function with three arguments instead of one. */ #ifdef __USE_MISC -# define SA_STACK 0x00000001 /* Use signal stack by using `sa_restorer'. */ +# define SA_ONSTACK 0x00000001 /* Use signal stack by using `sa_restorer'. */ # define SA_RESTART 0x00000002 /* Restart syscall on signal return. */ # define SA_INTERRUPT 0x00000010 /* Historical no-op. */ # define SA_NOMASK 0x00000020 /* Don't automatically block the signal when @@ -53,6 +53,7 @@ struct sigaction /* Some aliases for the SA_ constants. */ # define SA_NODEFER SA_NOMASK # define SA_RESETHAND SA_ONESHOT +# define SA_STACK SA_ONSTACK #endif /* Values for the HOW argument to `sigprocmask'. */ |