From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2178) id A3DED3858426; Mon, 28 Feb 2022 12:38:56 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org A3DED3858426 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Florian Weimer To: glibc-cvs@sourceware.org Subject: [glibc] manual: SA_ONSTACK is ignored without alternate stack X-Act-Checkin: glibc X-Git-Author: Florian Weimer X-Git-Refname: refs/heads/master X-Git-Oldrev: ae132284092edc5885315b44cd17d5ea91177e49 X-Git-Newrev: ca7334d34b7811fc261c84c498fd4a19acd70530 Message-Id: <20220228123856.A3DED3858426@sourceware.org> Date: Mon, 28 Feb 2022 12:38:56 +0000 (GMT) X-BeenThere: glibc-cvs@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Glibc-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Feb 2022 12:38:56 -0000 https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=ca7334d34b7811fc261c84c498fd4a19acd70530 commit ca7334d34b7811fc261c84c498fd4a19acd70530 Author: Florian Weimer Date: Mon Feb 28 11:50:41 2022 +0100 manual: SA_ONSTACK is ignored without alternate stack The current stack is used. No SIGILL is generated. Diff: --- manual/signal.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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