Searched refs:thrd_start_t (Results 1 – 13 of 13) sorted by relevance
/third_party/musl/libc-test/src/functionalext/supplement/thread/ |
D | call_once.c | 50 thrd_create(&t1, (thrd_start_t)func, NULL); in main() 51 thrd_create(&t2, (thrd_start_t)func, NULL); in main() 52 thrd_create(&t3, (thrd_start_t)func, NULL); in main() 53 thrd_create(&t4, (thrd_start_t)func, NULL); in main()
|
D | cnd_wait.c | 42 ret = thrd_create(&id1, (thrd_start_t)cnd_waitfirst, (void *)1); in cnd_wait_0100()
|
D | cnd_signal.c | 43 ret = thrd_create(&id1, (thrd_start_t)cnd_timedwaitfirst, (void *)1); in cnd_signal_0100()
|
/third_party/musl/ndk_musl_include/ |
D | threads.h | 17 typedef int (*thrd_start_t)(void *); typedef 43 int thrd_create(thrd_t *, thrd_start_t, void *);
|
/third_party/musl/porting/liteos_m/kernel/include/ |
D | threads.h | 17 typedef int (*thrd_start_t)(void *); typedef 43 int thrd_create(thrd_t *, thrd_start_t, void *);
|
/third_party/musl/include/ |
D | threads.h | 17 typedef int (*thrd_start_t)(void *); typedef 43 int thrd_create(thrd_t *, thrd_start_t, void *);
|
/third_party/musl/porting/uniproton/kernel/include/ |
D | threads.h | 17 typedef int (*thrd_start_t)(void *); typedef 43 int thrd_create(thrd_t *, thrd_start_t, void *);
|
/third_party/mesa3d/src/c11/ |
D | threads.h | 98 typedef int (*thrd_start_t)(void *); typedef 177 int thrd_create(thrd_t *, thrd_start_t, void *);
|
/third_party/glfw/deps/ |
D | tinycthread.h | 326 typedef int (*thrd_start_t)(void *arg); typedef 340 int thrd_create(thrd_t *thr, thrd_start_t func, void *arg);
|
D | tinycthread.c | 320 thrd_start_t mFunction; /**< Pointer to the function to be executed. */ 331 thrd_start_t fun; in _thrd_wrapper_function() 361 int thrd_create(thrd_t *thr, thrd_start_t func, void *arg) in thrd_create()
|
/third_party/musl/src/thread/ |
D | thrd_create.c | 4 int thrd_create(thrd_t *thr, thrd_start_t func, void *arg) in thrd_create()
|
/third_party/mesa3d/src/c11/impl/ |
D | threads_posix.c | 58 thrd_start_t func; 255 thrd_create(thrd_t *thr, thrd_start_t func, void *arg) in thrd_create()
|
D | threads_win32.c | 83 thrd_start_t func; 311 thrd_create(thrd_t *thr, thrd_start_t func, void *arg) in thrd_create()
|