summaryrefslogtreecommitdiff
path: root/PACE/pace/thread.h
diff options
context:
space:
mode:
Diffstat (limited to 'PACE/pace/thread.h')
-rw-r--r--PACE/pace/thread.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/PACE/pace/thread.h b/PACE/pace/thread.h
new file mode 100644
index 00000000000..171d4e889b9
--- /dev/null
+++ b/PACE/pace/thread.h
@@ -0,0 +1,29 @@
+/* $Id$
+
+ * =============================================================================
+ *
+ * = LIBRARY
+ * pace
+ *
+ * = FILENAME
+ * pace/thread.h
+ *
+ * = AUTHOR
+ * Luther Baker
+ *
+ * ============================================================================= */
+
+#ifndef PACE_THREAD_H_INDIRECT
+#define PACE_THREAD_H_INDIRECT
+
+#include "pace/config/defines.h"
+
+#if defined (PACE_HAS_POSIX)
+# include "pace/posix/thread.h"
+#elif defined (PACE_VXWORKS)
+# include "pace/vxworks/thread.h"
+#elif defined (PACE_WIN32)
+# include "pace/win32/thread.h"
+#endif
+
+#endif /* PACE_THREAD_H_INDIRECT */