mymemory: define the "opposite" of MEMALLOC
[model-checker.git] / libthreads.h
index b16c96be83dc4aab21b77f46b3579574a861c137..f6de95bb9fa4f3614f07658b2abe05f8217ec6fa 100644 (file)
@@ -1,16 +1,23 @@
 #ifndef __LIBTHREADS_H__
 #define __LIBTHREADS_H__
 
-typedef int thread_id_t;
-typedef void (*thrd_start_t)();
+#ifdef __cplusplus
+extern "C" {
+#endif
 
-typedef thread_id_t thrd_t;
+       typedef void (*thrd_start_t)(void *);
 
-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);
+       typedef int thrd_t;
 
-extern void user_main(void);
+       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);
+
+       void user_main(void);
+
+#ifdef __cplusplus
+}
+#endif
 
 #endif /* __LIBTHREADS_H__ */