diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2015-01-23 16:21:07 -0800 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2015-01-23 16:21:07 -0800 |
commit | e0da28a1b2ff9112f4aee4cebd4b22fce1ae62ac (patch) | |
tree | 55508c6d2d2e7930a1037df61f63d3cfe72929b5 /nptl | |
parent | 22971c35e2de34ec3e1b02e9bceebcba2ead7bfe (diff) | |
download | glibc-e0da28a1b2ff9112f4aee4cebd4b22fce1ae62ac.zip glibc-e0da28a1b2ff9112f4aee4cebd4b22fce1ae62ac.tar.gz glibc-e0da28a1b2ff9112f4aee4cebd4b22fce1ae62ac.tar.bz2 |
Also use uint64_t in __new_sem_wait_fast
Diffstat (limited to 'nptl')
-rw-r--r-- | nptl/sem_waitcommon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nptl/sem_waitcommon.c b/nptl/sem_waitcommon.c index c60daa3..311e511 100644 --- a/nptl/sem_waitcommon.c +++ b/nptl/sem_waitcommon.c @@ -228,7 +228,7 @@ __new_sem_wait_fast (struct new_sem *sem, int definitive_result) and the failure path of the CAS. If the weak CAS fails and we need a definitive result, retry. */ #if __HAVE_64B_ATOMICS - unsigned long d = atomic_load_relaxed (&sem->data); + uint64_t d = atomic_load_relaxed (&sem->data); do { if ((d & SEM_VALUE_MASK) == 0) |