Home | History | Annotate | Download | only in libpthread

Lines Matching defs:RT

73 #define	RT(x) do							      \
113 RT(thrd_join(*tp, &result));
216 RT(cnd_init(&cnd));
217 RT(mtx_init(&mtx, mtx_plain));
219 RT(mtx_lock(&mtx));
220 RT(cnd_timedwait(&cnd, &mtx, &t));
221 RT(mtx_unlock(&mtx));
230 RT(cnd_init(&cnd));
231 RT(mtx_init(&mtx, mtx_plain));
233 RT(mtx_lock(&mtx));
234 RT(cnd_wait(&cnd, &mtx));
235 RT(mtx_unlock(&mtx));
825 RT(thrd_create(&t, &emptythrd, NULL));
828 RT(thrd_join(t, NULL));
838 RT(thrd_sleep(&t, NULL));