missing commit of mo_graph changes
[c11tester.git] / libthreads.h
index 72cc00b8e1532606659d43814de88afe6d0697e0..0c02971342d06ffa903feb01b2d4daadc08754d4 100644 (file)
@@ -1,3 +1,7 @@
+/** @file libthreads.h
+ *  @brief Basic Thread Library Functionality.
+ */
+
 #ifndef __LIBTHREADS_H__
 #define __LIBTHREADS_H__
 
@@ -5,17 +9,16 @@
 extern "C" {
 #endif
 
-       typedef int thread_id_t;
-       typedef void (*thrd_start_t)();
+       typedef void (*thrd_start_t)(void *);
 
-       typedef thread_id_t thrd_t;
+       typedef int thrd_t;
 
        int thrd_create(thrd_t *t, thrd_start_t start_routine, void *arg);
        int thrd_join(thrd_t);
        int thrd_yield(void);
        thrd_t thrd_current(void);
 
-       extern void user_main(void);
+       void user_main(void);
 
 #ifdef __cplusplus
 }