HomeSort by: relevance | last modified time | path
    Searched refs:mtx_t (Results 1 - 6 of 6) sorted by relevancy

  /src/lib/libpthread/
threads.h 61 typedef pthread_mutex_t mtx_t; typedef in typeref:typename:pthread_mutex_t
92 int cnd_timedwait(cnd_t * __restrict, mtx_t * __restrict,
94 int cnd_wait(cnd_t *, mtx_t *);
97 void mtx_destroy(mtx_t *);
98 int mtx_init(mtx_t *, int);
99 int mtx_lock(mtx_t *);
100 int mtx_timedlock(mtx_t *__restrict, const struct timespec *__restrict);
101 int mtx_trylock(mtx_t *);
102 int mtx_unlock(mtx_t *);
mtx.c 41 mtx_destroy(mtx_t *mtx)
53 mtx_init_default(mtx_t *mtx)
65 mtx_init_recursive(mtx_t *mtx)
89 mtx_init(mtx_t *mtx, int type)
107 mtx_lock(mtx_t *mtx)
119 mtx_timedlock(mtx_t *__restrict mtx, const struct timespec *__restrict ts)
136 mtx_trylock(mtx_t *mtx)
152 mtx_unlock(mtx_t *mtx)
cnd.c 89 cnd_timedwait(cnd_t * __restrict cond, mtx_t * __restrict mtx,
108 cnd_wait(cnd_t *cond, mtx_t *mtx)
  /src/tests/lib/libpthread/
t_cnd.c 59 static mtx_t b_m;
149 mtx_t m;
t_mtx.c 50 mtx_t m;
79 mtx_t m;
118 mtx_t m;
165 mtx_t m;
t_cancellation.c 213 mtx_t mtx;
228 mtx_t mtx;

Completed in 13 milliseconds