Lines Matching defs:mtx_t
189 } mtx_t;
191 typedef pthread_mutex_t mtx_t;
206 int mtx_init(mtx_t *mtx, int type);
211 void mtx_destroy(mtx_t *mtx);
221 int mtx_lock(mtx_t *mtx);
225 int mtx_timedlock(mtx_t *mtx, const struct timespec *ts);
235 int mtx_trylock(mtx_t *mtx);
242 int mtx_unlock(mtx_t *mtx);
297 int cnd_wait(cnd_t *cond, mtx_t *mtx);
311 int cnd_timedwait(cnd_t *cond, mtx_t *mtx, const struct timespec *ts);