diff options
author | Roland McGrath <roland@hack.frob.com> | 2015-06-24 18:09:32 -0700 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2015-06-24 18:09:32 -0700 |
commit | 45a8f0e6629d7772b9fa1aef0389bc51a094424d (patch) | |
tree | efeeee00e22b3e4a5b1575840d0be30d8a909d27 /nptl | |
parent | e185d57e9933806ede21294acb2a3283a840b6c7 (diff) | |
download | glibc-45a8f0e6629d7772b9fa1aef0389bc51a094424d.zip glibc-45a8f0e6629d7772b9fa1aef0389bc51a094424d.tar.gz glibc-45a8f0e6629d7772b9fa1aef0389bc51a094424d.tar.bz2 |
NPTL: Use unsigned type for setxid_futex.
Diffstat (limited to 'nptl')
-rw-r--r-- | nptl/descr.h | 2 |
1 files changed, 1 insertions, 1 deletions
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. */ |