HomeSort by relevance Sort by last modified time
    Searched defs:mtx_t (Results 1 - 3 of 3) sorted by null

  /external/jemalloc/test/include/test/
mtx.h 18 } mtx_t; typedef in typeref:struct:__anon22507
20 bool mtx_init(mtx_t *mtx);
21 void mtx_fini(mtx_t *mtx);
22 void mtx_lock(mtx_t *mtx);
23 void mtx_unlock(mtx_t *mtx);
  /external/mesa3d/include/c11/
threads_posix.h 68 typedef pthread_mutex_t mtx_t; typedef
135 cnd_timedwait(cnd_t *cond, mtx_t *mtx, const xtime *xt)
155 cnd_wait(cnd_t *cond, mtx_t *mtx)
166 mtx_destroy(mtx_t *mtx)
200 mtx_init(mtx_t *mtx, int type)
224 mtx_lock(mtx_t *mtx)
231 mtx_trylock(mtx_t *mtx);
238 mtx_timedlock(mtx_t *mtx, const xtime *xt)
270 mtx_trylock(mtx_t *mtx)
278 mtx_unlock(mtx_t *mtx
    [all...]
threads_win32.h 108 typedef CRITICAL_SECTION mtx_t; typedef
121 static inline int mtx_trylock(mtx_t *mtx);
122 static inline int mtx_lock(mtx_t *mtx);
123 static inline int mtx_unlock(mtx_t *mtx);
209 static int impl_cond_do_wait(cnd_t *cond, mtx_t *mtx, const xtime *xt)
381 cnd_timedwait(cnd_t *cond, mtx_t *mtx, const xtime *xt)
395 cnd_wait(cnd_t *cond, mtx_t *mtx)
410 mtx_destroy(mtx_t *mtx)
418 mtx_init(mtx_t *mtx, int type)
432 mtx_lock(mtx_t *mtx
    [all...]

Completed in 78 milliseconds