threads: add id_to_int() and int_to_id() inline functions
[model-checker.git] / threads.h
index 490081afe882c41b0bfec641740f43c4e99d90ed..7a21a30d8d93f49e4e0c13d37dfeb18f21260b47 100644 (file)
--- a/threads.h
+++ b/threads.h
@@ -19,7 +19,6 @@ public:
        void * operator new(size_t size);
        void operator delete(void *ptr);
        Thread(thrd_t *t, void (*func)(), void *a);
-       Thread(thrd_t *t);
        ~Thread();
        void complete();
 
@@ -49,4 +48,14 @@ static inline thread_id_t thrd_to_id(thrd_t t)
        return t;
 }
 
+static inline thread_id_t int_to_id(int i)
+{
+       return i;
+}
+
+static inline int id_to_int(thread_id_t id)
+{
+       return id;
+}
+
 #endif /* __THREADS_H__ */