model: move class Backtrack to model.cc
[model-checker.git] / libthreads.h
index 4cf6ad352da0a47cd582a439f957c0d57a9b6528..a899881c3ee5185c94d3ad115ed90329e777699e 100644 (file)
@@ -5,10 +5,9 @@
 extern "C" {
 #endif
 
-       typedef int thread_id_t;
        typedef void (*thrd_start_t)();
 
-       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);