Searched refs:newval (Results 1 – 6 of 6) sorted by relevance
/nptl/ |
A D | pthread_once.c | 71 int val, newval; in __pthread_once_slow() local 88 newval = __fork_generation | __PTHREAD_ONCE_INPROGRESS; in __pthread_once_slow() 93 once_control, &val, newval))); in __pthread_once_slow() 101 if (val == newval) in __pthread_once_slow() 106 (unsigned int) newval, FUTEX_PRIVATE); in __pthread_once_slow()
|
A D | pthread_mutex_lock.c | 224 int newval = id; in __pthread_mutex_lock_full() local 228 newval |= FUTEX_WAITERS; in __pthread_mutex_lock_full() 230 newval |= (oldval & FUTEX_WAITERS) | assume_other_futex_waiters; in __pthread_mutex_lock_full() 233 newval in __pthread_mutex_lock_full() 235 newval, oldval); in __pthread_mutex_lock_full() 237 if (newval != oldval) in __pthread_mutex_lock_full() 239 oldval = newval; in __pthread_mutex_lock_full() 416 int newval = id; in __pthread_mutex_lock_full() local 418 newval |= FUTEX_WAITERS; in __pthread_mutex_lock_full() 421 newval, 0); in __pthread_mutex_lock_full()
|
A D | pthread_mutex_trylock.c | 100 int newval = id | (oldval & FUTEX_WAITERS); in ___pthread_mutex_trylock() local 102 newval in ___pthread_mutex_trylock() 104 newval, oldval); in ___pthread_mutex_trylock() 106 if (newval != oldval) in ___pthread_mutex_trylock() 108 oldval = newval; in ___pthread_mutex_trylock()
|
A D | pthread_mutex_unlock.c | 336 int newval; in libc_hidden_def() local 340 newval = oldval & PTHREAD_MUTEX_PRIO_CEILING_MASK; in libc_hidden_def() 343 &oldval, newval)); in libc_hidden_def() 349 int oldprio = newval >> PTHREAD_MUTEX_PRIO_CEILING_SHIFT; in libc_hidden_def()
|
A D | nptl_setxid.c | 78 int flags, newval; in __nptl_setxid_sighandler() local 82 newval = THREAD_ATOMIC_CMPXCHG_VAL (self, cancelhandling, in __nptl_setxid_sighandler() 85 while (flags != newval); in __nptl_setxid_sighandler()
|
A D | pthread_mutex_timedlock.c | 156 int newval = id | (oldval & FUTEX_WAITERS) in __pthread_mutex_clocklock_common() local 159 newval in __pthread_mutex_clocklock_common() 161 newval, oldval); in __pthread_mutex_clocklock_common() 162 if (newval != oldval) in __pthread_mutex_clocklock_common() 164 oldval = newval; in __pthread_mutex_clocklock_common()
|
Completed in 8 milliseconds