Lines Matching refs:mut
56 #define PyMUTEX_INIT(mut) pthread_mutex_init((mut), NULL)
57 #define PyMUTEX_FINI(mut) pthread_mutex_destroy(mut)
58 #define PyMUTEX_LOCK(mut) pthread_mutex_lock(mut)
59 #define PyMUTEX_UNLOCK(mut) pthread_mutex_unlock(mut)
65 #define PyCOND_WAIT(cond, mut) pthread_cond_wait((cond), (mut))
69 PyCOND_TIMEDWAIT(PyCOND_T *cond, PyMUTEX_T *mut, long long us)
73 int ret = pthread_cond_timedwait(cond, mut, &abs);