summaryrefslogtreecommitdiffstats
path: root/src/common/thread.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/common/thread.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/common/thread.cpp b/src/common/thread.cpp
index 9e207118f..a7267b637 100644
--- a/src/common/thread.cpp
+++ b/src/common/thread.cpp
@@ -25,16 +25,6 @@
namespace Common {
-int CurrentThreadId() {
-#ifdef _MSC_VER
- return GetCurrentThreadId();
-#elif defined __APPLE__
- return mach_thread_self();
-#else
- return 0;
-#endif
-}
-
#ifdef _WIN32
// Supporting functions
void SleepCurrentThread(int ms) {