rename threads.h -> threads-model.h
[model-checker.git] / libthreads.h
index b16c96be83dc4aab21b77f46b3579574a861c137..8033a12dc053fe02a223b158934722331da96e8d 100644 (file)
@@ -1,16 +1,27 @@
+/** @file libthreads.h
+ *  @brief Basic Thread Library Functionality.
+ */
+
 #ifndef __LIBTHREADS_H__
 #define __LIBTHREADS_H__
 
-typedef int thread_id_t;
-typedef void (*thrd_start_t)();
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+       typedef void (*thrd_start_t)(void *);
+
+       typedef int thrd_t;
 
-typedef thread_id_t 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);
 
-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);
+       int user_main(int, char**);
 
-extern void user_main(void);
+#ifdef __cplusplus
+}
+#endif
 
 #endif /* __LIBTHREADS_H__ */