Searched refs:__futex_wait_ex (Results 1 – 3 of 3) sorted by relevance
/bionic/libc/private/ |
D | bionic_futex.h | 55 extern int __futex_wait_ex(volatile void *ftx, int pshared, int val, const struct timespec *timeou…
|
/bionic/libc/bionic/ |
D | semaphore.c | 261 __futex_wait_ex(&sem->count, shared, shared|SEMCOUNT_MINUS_ONE, NULL); in sem_wait() 324 ret = __futex_wait_ex(&sem->count, shared, shared|SEMCOUNT_MINUS_ONE, &ts); in sem_timedwait()
|
D | pthread.c | 64 int __futex_wait_ex(volatile void *ftx, int pshared, int val, const struct timespec *timeout) in __futex_wait_ex() function 951 __futex_wait_ex(&mutex->value, shared, shared|2, 0); in _normal_lock() 1102 __futex_wait_ex(&mutex->value, shared, oldv, NULL); in pthread_mutex_lock() 1269 __futex_wait_ex(&mutex->value, shared, shared|2, &ts); in pthread_mutex_lock_timeout_np() 1332 __futex_wait_ex(&mutex->value, shared, oldv, &ts); in pthread_mutex_lock_timeout_np() 1477 status = __futex_wait_ex(&cond->value, COND_IS_SHARED(cond), oldvalue, reltime); in __pthread_cond_timedwait_relative()
|