aboutsummaryrefslogtreecommitdiff
path: root/Src/replicant/nu/ThreadLoop.h
diff options
context:
space:
mode:
Diffstat (limited to 'Src/replicant/nu/ThreadLoop.h')
-rw-r--r--Src/replicant/nu/ThreadLoop.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/Src/replicant/nu/ThreadLoop.h b/Src/replicant/nu/ThreadLoop.h
new file mode 100644
index 00000000..b65b29ff
--- /dev/null
+++ b/Src/replicant/nu/ThreadLoop.h
@@ -0,0 +1,16 @@
+#pragma once
+#if defined(__ANDROID__) && defined(__ARM_ARCH_7A__)
+#include "android-armv7/ThreadLoop.h"
+#elif defined(__ANDROID__) && (defined(__ARM_ARCH_5__) || defined(__ARM_ARCH_5TE__))
+#include "android-arm/ThreadLoop.h"
+#elif defined(__ANDROID__) && defined(__i386__)
+#include "android-x86/ThreadLoop.h"
+#elif defined(_WIN32)
+#include "win/ThreadLoop.h"
+#elif defined(__linux__)
+#include "linux/ThreadLoop.h"
+#elif defined(__APPLE__)
+#include "osx/ThreadLoop.h"
+#else
+#error port me!
+#endif