Lines Matching refs:FUNCTION

54   FUNCTION(call_once, void (*f)(once_flag*, void (*)(void)));  in threads_h()
56 FUNCTION(cnd_broadcast, int (*f)(cnd_t*)); in threads_h()
57 FUNCTION(cnd_destroy, void (*f)(cnd_t*)); in threads_h()
58 FUNCTION(cnd_init, int (*f)(cnd_t*)); in threads_h()
59 FUNCTION(cnd_signal, int (*f)(cnd_t*)); in threads_h()
60 FUNCTION(cnd_timedwait, int (*f)(cnd_t*, mtx_t*, const struct timespec*)); in threads_h()
61 FUNCTION(cnd_wait, int (*f)(cnd_t*, mtx_t*)); in threads_h()
63 FUNCTION(mtx_destroy, void (*f)(mtx_t*)); in threads_h()
64 FUNCTION(mtx_init, int (*f)(mtx_t*, int)); in threads_h()
65 FUNCTION(mtx_lock, int (*f)(mtx_t*)); in threads_h()
66 FUNCTION(mtx_timedlock, int (*f)(mtx_t*, const struct timespec*)); in threads_h()
67 FUNCTION(mtx_trylock, int (*f)(mtx_t*)); in threads_h()
68 FUNCTION(mtx_unlock, int (*f)(mtx_t*)); in threads_h()
70 FUNCTION(thrd_create, int (*f)(thrd_t*, thrd_start_t, void*)); in threads_h()
71 FUNCTION(thrd_current, thrd_t (*f)(void)); in threads_h()
72 FUNCTION(thrd_detach, int (*f)(thrd_t)); in threads_h()
73 FUNCTION(thrd_equal, int (*f)(thrd_t, thrd_t)); in threads_h()
74 FUNCTION(thrd_exit, void (*f)(int)); in threads_h()
75 FUNCTION(thrd_join, int (*f)(thrd_t, int*)); in threads_h()
76 FUNCTION(thrd_sleep, int (*f)(const struct timespec*, struct timespec*)); in threads_h()
77 FUNCTION(thrd_yield, void (*f)(void)); in threads_h()
79 FUNCTION(tss_create, int (*f)(tss_t*, tss_dtor_t)); in threads_h()
80 FUNCTION(tss_delete, void (*f)(tss_t)); in threads_h()
81 FUNCTION(tss_get, void* (*f)(tss_t)); in threads_h()
82 FUNCTION(tss_set, int (*f)(tss_t, void*)); in threads_h()