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.23-89-g15b9738


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  15b9738da39063ee118a22b48a2255c5b2769182 (commit)
      from  b43f552a8a23c0e405ab13a268bee12ada3b7841 (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=15b9738da39063ee118a22b48a2255c5b2769182

commit 15b9738da39063ee118a22b48a2255c5b2769182
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date:   Sun Mar 13 21:44:09 2016 +0100

    Fix flag test in waitid compatibility layer
    
    	* sysdeps/posix/waitid.c (OUR_WAITID): Test against WSTOPPED instead of
    	WUNTRACED.

diff --git a/ChangeLog b/ChangeLog
index 99fe2c9..4cc920d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2016-03-13  Samuel Thibault  <samuel.thibault@ens-lyon.org
+
+	* sysdeps/posix/waitid.c (OUR_WAITID): Test against WSTOPPED instead of
+	WUNTRACED.
+
 2016-03-11  Tulio Magno Quites Machado Filho  <tuliom@linux.vnet.ibm.com>
 
 	* malloc/malloc.c (malloc_consolidate): Replace 0 by NULL in
diff --git a/sysdeps/posix/waitid.c b/sysdeps/posix/waitid.c
index 14bf15e..392a37d 100644
--- a/sysdeps/posix/waitid.c
+++ b/sysdeps/posix/waitid.c
@@ -80,7 +80,7 @@ OUR_WAITID (idtype_t idtype, id_t id, siginfo_t *infop, int options)
 #endif
 #ifdef WEXITED
       || ((options & (WEXITED|WSTOPPED|WCONTINUED))
-	  != (WEXITED | (options & WUNTRACED)))
+	  != (WEXITED | (options & WSTOPPED)))
 #endif
       )
     {

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

Summary of changes:
 ChangeLog              |    5 +++++
 sysdeps/posix/waitid.c |    2 +-
 2 files changed, 6 insertions(+), 1 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]