This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch master updated. glibc-2.28.9000-586-ga0bb5ab


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  a0bb5abd09e3d0f66c3dccf70bf74c8b2d7cc1c2 (commit)
      from  32f600a27275ec7a315cbbc465cb19b06b44f9b8 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=a0bb5abd09e3d0f66c3dccf70bf74c8b2d7cc1c2

commit a0bb5abd09e3d0f66c3dccf70bf74c8b2d7cc1c2
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date:   Thu Jan 24 19:27:00 2019 +0100

    hurd: Fix initial sigaltstack state
    
    	* hurd/hurdsig.c (_hurd_thread_sigstate): Set SS_DISABLE in
    	sigaltstack.ss_flags.

diff --git a/ChangeLog b/ChangeLog
index 8f3924d..60f4e60 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2019-01-24  Samuel Thibault  <samuel.thibault@ens-lyon.org>
+
+	* hurd/hurdsig.c (_hurd_thread_sigstate): Set SS_DISABLE in
+	sigaltstack.ss_flags.
+
 2019-01-24  TAMUKI Shoichi  <tamuki@linet.gr.jp>
 
 	[BZ #23758]
diff --git a/hurd/hurdsig.c b/hurd/hurdsig.c
index 1d9516a..1e4b346 100644
--- a/hurd/hurdsig.c
+++ b/hurd/hurdsig.c
@@ -92,6 +92,7 @@ _hurd_thread_sigstate (thread_t thread)
       __sigemptyset (&ss->blocked);
       __sigemptyset (&ss->pending);
       memset (&ss->sigaltstack, 0, sizeof (ss->sigaltstack));
+      ss->sigaltstack.ss_flags |= SS_DISABLE;
       ss->preemptors = NULL;
       ss->suspended = MACH_PORT_NULL;
       ss->intr_port = MACH_PORT_NULL;

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog      |    5 +++++
 hurd/hurdsig.c |    1 +
 2 files changed, 6 insertions(+), 0 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]