pthread_mutex_cond_lock.c 247 B

12345678
  1. #include <pthreadP.h>
  2. #define LLL_MUTEX_LOCK(mutex) lll_mutex_cond_lock(mutex)
  3. #define LLL_MUTEX_TRYLOCK(mutex) lll_mutex_cond_trylock(mutex)
  4. #define __pthread_mutex_lock __pthread_mutex_cond_lock
  5. #define NO_INCR
  6. #include <pthread_mutex_lock.c>