threads.h | 59 typedef pthread_t thrd_t; typedef in typeref:typename:pthread_t 105 int thrd_create(thrd_t *, thrd_start_t, void *); 106 thrd_t thrd_current(void); 107 int thrd_detach(thrd_t); 108 int thrd_equal(thrd_t, thrd_t); 110 int thrd_join(thrd_t, int *);
|