fix various problems with my 64-bit clean hack
[model-checker.git] / libthreads.h
index 72cc00b8e1532606659d43814de88afe6d0697e0..f6de95bb9fa4f3614f07658b2abe05f8217ec6fa 100644 (file)
@@ -5,17 +5,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
 }