diff options
author | Florian Weimer <fweimer@redhat.com> | 2022-02-28 11:50:41 +0100 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2022-02-28 11:50:41 +0100 |
commit | ca7334d34b7811fc261c84c498fd4a19acd70530 (patch) | |
tree | df71f7fbbe8777f175fa7fbdd451604a2dab09d5 /manual | |
parent | ae132284092edc5885315b44cd17d5ea91177e49 (diff) | |
download | glibc-ca7334d34b7811fc261c84c498fd4a19acd70530.tar glibc-ca7334d34b7811fc261c84c498fd4a19acd70530.tar.gz glibc-ca7334d34b7811fc261c84c498fd4a19acd70530.tar.bz2 glibc-ca7334d34b7811fc261c84c498fd4a19acd70530.zip |
manual: SA_ONSTACK is ignored without alternate stack
The current stack is used. No SIGILL is generated.
Diffstat (limited to 'manual')
-rw-r--r-- | manual/signal.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manual/signal.texi b/manual/signal.texi index 8a12baf044..5c2ba7dae6 100644 --- a/manual/signal.texi +++ b/manual/signal.texi @@ -1329,7 +1329,7 @@ Setting this flag for a signal other than @code{SIGCHLD} has no effect. If this flag is set for a particular signal number, the system uses the signal stack when delivering that kind of signal. @xref{Signal Stack}. If a signal with this flag arrives and you have not set a signal stack, -the system terminates the program with @code{SIGILL}. +the normal user stack is used instead, as if the flag had not been set. @end deftypevr @deftypevr Macro int SA_RESTART |