Home
last modified time | relevance | path

Searched refs:thrd_t (Results 1 – 9 of 9) sorted by relevance

/third_party/musl/include/
Dthreads.h9 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/
Dthreads.h13 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/
Dtinycthread.h313 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);
Dtinycthread.c361 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/
Dthrd_join.c5 int thrd_join(thrd_t t, int *res) in thrd_join()
Dthrd_create.c4 int thrd_create(thrd_t *thr, thrd_start_t func, void *arg) in thrd_create()
/third_party/flutter/glfw/tests/
Dempty.c76 thrd_t thread; in main()
Dthreads.c45 thrd_t id;
/third_party/flutter/glfw/examples/
Dparticles.c940 thrd_t physics_thread = 0; in main()