Home
last modified time | relevance | path

Searched refs:tct_thrd_t (Results 1 – 6 of 6) sorted by relevance

/dports/devel/R-cran-later/later/src/
H A Dtinycthread.h334 typedef HANDLE tct_thrd_t; typedef
336 typedef pthread_t tct_thrd_t; typedef
361 int tct_thrd_create(tct_thrd_t *thr, tct_thrd_start_t func, void *arg);
366 tct_thrd_t tct_thrd_current(void);
371 int tct_thrd_detach(tct_thrd_t thr);
378 int tct_thrd_equal(tct_thrd_t thr0, tct_thrd_t thr1);
394 int tct_thrd_join(tct_thrd_t thr, int *res);
H A Ddebug.h9 extern tct_thrd_t __main_thread__;
10 extern tct_thrd_t __background_thread__;
H A Ddebug.cpp10 tct_thrd_t __main_thread__;
11 tct_thrd_t __background_thread__;
H A Dtinycthread.c592 int tct_thrd_create(tct_thrd_t *thr, tct_thrd_start_t func, void *arg) in tct_thrd_create()
624 tct_thrd_t tct_thrd_current(void) in tct_thrd_current()
633 int tct_thrd_detach(tct_thrd_t thr) in tct_thrd_detach()
643 int tct_thrd_equal(tct_thrd_t thr0, tct_thrd_t thr1) in tct_thrd_equal()
666 int tct_thrd_join(tct_thrd_t thr, int *res) in tct_thrd_join()
H A Dtimer_posix.h18 Optional<tct_thrd_t> bgthread;
H A Dtimer_posix.cpp75 tct_thrd_t thread; in set()