thrd_t
extern int thrd_create(thrd_t *, thrd_start_t, void *);
extern thrd_t thrd_current(void);
extern int thrd_detach(thrd_t);
extern int thrd_equal(thrd_t, thrd_t);
extern int thrd_join(thrd_t, int *);
thrd_create(thrd_t *thr, thrd_start_t func, void *arg)
thrd_t
thrd_detach(thrd_t thr)
thrd_equal(thrd_t t1, thrd_t t2)
thrd_join(thrd_t thrd, int *res)
thrd_t threads[STRESS_NTHREADS];
thrd_t self, other;
thrd_t self, other;
thrd_t thrd;
thrd_t threads[BROADCAST_NTHREADS];
thrd_t threads[SIGNAL_NTHREADS];
thrd_t thrd;
thrd_t threads[TSS_NTHREADS];
thrd_t threads[CO_NTHREADS];