diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | nptl/descr.h | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -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 5bd1282649..a502048b44 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. */ |