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.21-536-g45a8f0e


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  45a8f0e6629d7772b9fa1aef0389bc51a094424d (commit)
      from  e185d57e9933806ede21294acb2a3283a840b6c7 (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=45a8f0e6629d7772b9fa1aef0389bc51a094424d

commit 45a8f0e6629d7772b9fa1aef0389bc51a094424d
Author: Roland McGrath <roland@hack.frob.com>
Date:   Wed Jun 24 18:09:32 2015 -0700

    NPTL: Use unsigned type for setxid_futex.

diff --git a/ChangeLog b/ChangeLog
index e2e2d2e..f9cf634 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2015-06-24  Roland McGrath  <roland@hack.frob.com>
 
+	* nptl/descr.h (struct pthread): Change type of field setxid_futex
+	to 'unsigned int'.
+
 	* resolv/gai_misc.h (struct waitlist): Change type of field
 	counterp to 'volatile unsigned int *'.
 	* sysdeps/nptl/gai_misc.h (GAI_MISC_WAIT): Use unsigned types for
diff --git a/nptl/descr.h b/nptl/descr.h
index 5bd1282..a502048 100644
--- a/nptl/descr.h
+++ b/nptl/descr.h
@@ -328,7 +328,7 @@ struct pthread
   int lock;
 
   /* Lock for synchronizing setxid calls.  */
-  int setxid_futex;
+  unsigned int setxid_futex;
 
 #if HP_TIMING_AVAIL
   /* Offset of the CPU clock at start thread start time.  */

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

Summary of changes:
 ChangeLog    |    3 +++
 nptl/descr.h |    2 +-
 2 files changed, 4 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]