aboutsummaryrefslogtreecommitdiff
path: root/src/Platform/Dummy/Thread.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Platform/Dummy/Thread.h')
-rw-r--r--src/Platform/Dummy/Thread.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/Platform/Dummy/Thread.h b/src/Platform/Dummy/Thread.h
new file mode 100644
index 0000000..30ec213
--- /dev/null
+++ b/src/Platform/Dummy/Thread.h
@@ -0,0 +1,33 @@
+#ifndef BH_PLATFORM_DUMMY_THREAD_H
+#define BH_PLATFORM_DUMMY_THREAD_H
+
+
+struct BH_Condition
+{
+ int implement;
+ int me;
+};
+
+
+struct BH_Mutex
+{
+ int implement;
+ int me;
+};
+
+
+struct BH_Semaphore
+{
+ int implement;
+ int me;
+};
+
+
+struct BH_Thread
+{
+ int implement;
+ int me;
+};
+
+
+#endif /* BH_PLATFORM_DUMMY_THREAD_H */