mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-12 16:20:06 +00:00
NPTL: Use unsigned type for setxid_futex.
This commit is contained in:
parent
e185d57e99
commit
45a8f0e662
@ -1,5 +1,8 @@
|
|||||||
2015-06-24 Roland McGrath <roland@hack.frob.com>
|
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
|
* resolv/gai_misc.h (struct waitlist): Change type of field
|
||||||
counterp to 'volatile unsigned int *'.
|
counterp to 'volatile unsigned int *'.
|
||||||
* sysdeps/nptl/gai_misc.h (GAI_MISC_WAIT): Use unsigned types for
|
* sysdeps/nptl/gai_misc.h (GAI_MISC_WAIT): Use unsigned types for
|
||||||
|
@ -328,7 +328,7 @@ struct pthread
|
|||||||
int lock;
|
int lock;
|
||||||
|
|
||||||
/* Lock for synchronizing setxid calls. */
|
/* Lock for synchronizing setxid calls. */
|
||||||
int setxid_futex;
|
unsigned int setxid_futex;
|
||||||
|
|
||||||
#if HP_TIMING_AVAIL
|
#if HP_TIMING_AVAIL
|
||||||
/* Offset of the CPU clock at start thread start time. */
|
/* Offset of the CPU clock at start thread start time. */
|
||||||
|
Loading…
Reference in New Issue
Block a user