thread_id_t: add comments
authorBrian Norris <banorris@uci.edu>
Fri, 12 Oct 2012 18:05:12 +0000 (11:05 -0700)
committerBrian Norris <banorris@uci.edu>
Fri, 12 Oct 2012 18:05:12 +0000 (11:05 -0700)
include/modeltypes.h
threads-model.h

index 22221cb5731a25c317d616bb79a8eb30cd961cdf..34525d2c8e1abc1aaeba97d53d3bbb0bc3808bd3 100644 (file)
@@ -1,6 +1,24 @@
+/**
+ * @file modeltypes.h
+ * @brief Common typedefs for the model-checker
+ */
+
 #ifndef __MODELTYPES_H__
 #define __MODELTYPES_H__
 
+/**
+ * @brief Represents a unique ID for a Thread
+ *
+ * The space of unique IDs may need to become a non-compact
+ * or non-zero-indexed set of integers (or even some other
+ * type). So this typedef is used to help identify which is
+ * which, where a simple 'int' is meant to be a compact,
+ * zero-indexed set and a 'thread_id_t' may be another type
+ * entirely.
+ *
+ * @see id_to_int
+ * @see int_to_id
+ */
 typedef int thread_id_t;
 
 #define THREAD_ID_T_NONE       -1
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;