Searched refs:thrd_t (Results 1 – 9 of 9) sorted by relevance
/third_party/musl/include/ |
D | threads.h | 9 typedef unsigned long thrd_t; typedef 11 typedef struct __pthread *thrd_t; 43 int thrd_create(thrd_t *, thrd_start_t, void *); 46 int thrd_detach(thrd_t); 47 int thrd_join(thrd_t, int *); 52 thrd_t thrd_current(void); 53 int thrd_equal(thrd_t, thrd_t);
|
/third_party/musl/porting/liteos_m/kernel/include/ |
D | threads.h | 13 typedef unsigned long thrd_t; typedef 15 typedef struct __pthread *thrd_t; 47 int thrd_create(thrd_t *, thrd_start_t, void *); 50 int thrd_detach(thrd_t); 51 int thrd_join(thrd_t, int *); 56 thrd_t thrd_current(void); 57 int thrd_equal(thrd_t, thrd_t);
|
/third_party/flutter/glfw/deps/ |
D | tinycthread.h | 313 typedef HANDLE thrd_t; typedef 315 typedef pthread_t thrd_t; typedef 340 int thrd_create(thrd_t *thr, thrd_start_t func, void *arg); 345 thrd_t thrd_current(void); 349 int thrd_detach(thrd_t thr); 356 int thrd_equal(thrd_t thr0, thrd_t thr1); 372 int thrd_join(thrd_t thr, int *res);
|
D | tinycthread.c | 361 int thrd_create(thrd_t *thr, thrd_start_t func, void *arg) in thrd_create() 393 thrd_t thrd_current(void) in thrd_current() 402 int thrd_detach(thrd_t thr) in thrd_detach() 409 int thrd_equal(thrd_t thr0, thrd_t thr1) in thrd_equal() 432 int thrd_join(thrd_t thr, int *res) in thrd_join()
|
/third_party/musl/src/thread/ |
D | thrd_join.c | 5 int thrd_join(thrd_t t, int *res) in thrd_join()
|
D | thrd_create.c | 4 int thrd_create(thrd_t *thr, thrd_start_t func, void *arg) in thrd_create()
|
/third_party/flutter/glfw/tests/ |
D | empty.c | 76 thrd_t thread; in main()
|
D | threads.c | 45 thrd_t id;
|
/third_party/flutter/glfw/examples/ |
D | particles.c | 940 thrd_t physics_thread = 0; in main()
|