mutex 581 miscwrappers.cpp pthread_cond_timedwait(pthread_cond_t *cond, pthread_mutex_t *mutex, mutex 584 miscwrappers.cpp return _real_pthread_cond_timedwait(cond, mutex, abstime); mutex 588 miscwrappers.cpp pthread_cond_wait(pthread_cond_t *cond, pthread_mutex_t *mutex) mutex 590 miscwrappers.cpp return _real_pthread_cond_wait(cond, mutex); mutex 595 miscwrappers.cpp pthread_mutex_lock(pthread_mutex_t *mutex) mutex 597 miscwrappers.cpp return _real_pthread_mutex_lock(mutex); mutex 601 miscwrappers.cpp pthread_mutex_unlock(pthread_mutex_t *mutex) mutex 603 miscwrappers.cpp return _real_pthread_mutex_unlock(mutex); mutex 99 nosyscallsreal.c int _real_pthread_mutex_lock(pthread_mutex_t *mutex) { mutex 100 nosyscallsreal.c REAL_FUNC_PASSTHROUGH_TYPED (int,pthread_mutex_lock) (mutex); mutex 103 nosyscallsreal.c int _real_pthread_mutex_trylock(pthread_mutex_t *mutex) { mutex 104 nosyscallsreal.c REAL_FUNC_PASSTHROUGH_TYPED (int,pthread_mutex_trylock) (mutex); mutex 107 nosyscallsreal.c int _real_pthread_mutex_unlock(pthread_mutex_t *mutex) { mutex 108 nosyscallsreal.c REAL_FUNC_PASSTHROUGH_TYPED (int,pthread_mutex_unlock) (mutex); mutex 402 syscallsreal.c int _real_pthread_mutex_lock(pthread_mutex_t *mutex) { mutex 403 syscallsreal.c REAL_FUNC_PASSTHROUGH_TYPED (int,pthread_mutex_lock) (mutex); mutex 407 syscallsreal.c int _real_pthread_mutex_trylock(pthread_mutex_t *mutex) { mutex 408 syscallsreal.c REAL_FUNC_PASSTHROUGH_TYPED (int,pthread_mutex_trylock) (mutex); mutex 412 syscallsreal.c int _real_pthread_mutex_unlock(pthread_mutex_t *mutex) { mutex 413 syscallsreal.c REAL_FUNC_PASSTHROUGH_TYPED (int,pthread_mutex_unlock) (mutex); mutex 487 syscallsreal.c int _real_pthread_cond_timedwait(pthread_cond_t *cond, pthread_mutex_t *mutex, mutex 491 syscallsreal.c int result = NEXT_FNC_DEFAULT(pthread_cond_timedwait)(cond, mutex, abstime); mutex 494 syscallsreal.c REAL_FUNC_PASSTHROUGH_TYPED (int,pthread_cond_timedwait) (cond,mutex,abstime); mutex 499 syscallsreal.c int _real_pthread_cond_wait(pthread_cond_t *cond, pthread_mutex_t *mutex) mutex 502 syscallsreal.c int result = NEXT_FNC_DEFAULT(pthread_cond_wait)(cond,mutex); mutex 505 syscallsreal.c REAL_FUNC_PASSTHROUGH_TYPED (int,pthread_cond_wait) (cond,mutex); mutex 426 syscallwrappers.h int _real_pthread_mutex_lock(pthread_mutex_t *mutex); mutex 427 syscallwrappers.h int _real_pthread_mutex_trylock(pthread_mutex_t *mutex); mutex 428 syscallwrappers.h int _real_pthread_mutex_unlock(pthread_mutex_t *mutex); mutex 439 syscallwrappers.h int _real_pthread_cond_timedwait(pthread_cond_t *cond, pthread_mutex_t *mutex, mutex 441 syscallwrappers.h int _real_pthread_cond_wait(pthread_cond_t *cond, pthread_mutex_t *mutex);