model: move snapshot members out of header
[c11tester.git] / threads-model.h
index 8b165d541394a8fcc23089e354b9c1b8c48da4f4..b99b279b8ece6cccc916f227d228464112967254 100644 (file)
@@ -151,11 +151,21 @@ static inline thread_id_t thrd_to_id(thrd_t t)
        return t;
 }
 
+/**
+ * @brief Map a zero-based integer index to a unique thread ID
+ *
+ * This is the inverse of id_to_int
+ */
 static inline thread_id_t int_to_id(int i)
 {
        return i;
 }
 
+/**
+ * @brief Map a unique thread ID to a zero-based integer index
+ *
+ * This is the inverse of int_to_id
+ */
 static inline int id_to_int(thread_id_t id)
 {
        return id;