From: Roland McGrath Date: Thu, 25 Jun 2015 01:09:32 +0000 (-0700) Subject: NPTL: Use unsigned type for setxid_futex. X-Git-Tag: glibc-2.22~134 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=45a8f0e6629d7772b9fa1aef0389bc51a094424d;p=thirdparty%2Fglibc.git NPTL: Use unsigned type for setxid_futex. --- diff --git a/ChangeLog b/ChangeLog index e2e2d2ec5a0..f9cf634a44f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2015-06-24 Roland McGrath + * 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 5bd12826494..a502048b442 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. */