2 * @brief C11 Thread Library Functionality
8 /* Forward declaration */
9 struct Thread; /* actually, class; but this is safe */
15 typedef void (*thrd_start_t)(void *);
21 int thrd_create(thrd_t *t, thrd_start_t start_routine, void *arg);
22 int thrd_join(thrd_t);
23 void thrd_yield(void);
24 thrd_t thrd_current(void);
26 int user_main(int, char**);
32 #endif /* __THREADS_H__ */