diff --git a/src/arch/Threads/Threads_Pthreads.cpp b/src/arch/Threads/Threads_Pthreads.cpp index 44c076aa59..9181759c0c 100644 --- a/src/arch/Threads/Threads_Pthreads.cpp +++ b/src/arch/Threads/Threads_Pthreads.cpp @@ -6,12 +6,13 @@ #include #if defined(UNIX) -#include "archutils/Unix/LinuxThreadHelpers.h" #include "archutils/Unix/RunningUnderValgrind.h" #endif #if defined(MACOSX) #include "archutils/Darwin/DarwinThreadHelpers.h" +#else +#include "archutils/Common/PthreadHelpers.h" #endif void ThreadImpl_Pthreads::Halt( bool Kill ) diff --git a/src/archutils/Unix/LinuxThreadHelpers.cpp b/src/archutils/Common/PthreadHelpers.cpp similarity index 100% rename from src/archutils/Unix/LinuxThreadHelpers.cpp rename to src/archutils/Common/PthreadHelpers.cpp diff --git a/src/archutils/Unix/LinuxThreadHelpers.h b/src/archutils/Common/PthreadHelpers.h similarity index 100% rename from src/archutils/Unix/LinuxThreadHelpers.h rename to src/archutils/Common/PthreadHelpers.h