modeltypes: move to include/ dir, for now
authorBrian Norris <banorris@uci.edu>
Fri, 12 Oct 2012 17:24:18 +0000 (10:24 -0700)
committerBrian Norris <banorris@uci.edu>
Fri, 12 Oct 2012 17:24:18 +0000 (10:24 -0700)
The <mutex> header uses some small amount of private model-checker
information, so just move the common typedefs to our external include/
directory.

include/modeltypes.h [new file with mode: 0644]
modeltypes.h [deleted file]

diff --git a/include/modeltypes.h b/include/modeltypes.h
new file mode 100644 (file)
index 0000000..22221cb
--- /dev/null
@@ -0,0 +1,10 @@
+#ifndef __MODELTYPES_H__
+#define __MODELTYPES_H__
+
+typedef int thread_id_t;
+
+#define THREAD_ID_T_NONE       -1
+
+typedef unsigned int modelclock_t;
+
+#endif /* __MODELTYPES_H__ */
diff --git a/modeltypes.h b/modeltypes.h
deleted file mode 100644 (file)
index 22221cb..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-#ifndef __MODELTYPES_H__
-#define __MODELTYPES_H__
-
-typedef int thread_id_t;
-
-#define THREAD_ID_T_NONE       -1
-
-typedef unsigned int modelclock_t;
-
-#endif /* __MODELTYPES_H__ */