aboutsummaryrefslogtreecommitdiff
path: root/src/system_wrappers/source/thread.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/system_wrappers/source/thread.cc')
-rw-r--r--src/system_wrappers/source/thread.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/system_wrappers/source/thread.cc b/src/system_wrappers/source/thread.cc
index a136cbaf11..32dcc63fb6 100644
--- a/src/system_wrappers/source/thread.cc
+++ b/src/system_wrappers/source/thread.cc
@@ -11,9 +11,9 @@
#include "thread_wrapper.h"
#if defined(_WIN32)
- #include "thread_windows.h"
+ #include "thread_win.h"
#else
- #include "thread_linux.h"
+ #include "thread_posix.h"
#endif
namespace webrtc {
@@ -24,7 +24,7 @@ ThreadWrapper* ThreadWrapper::CreateThread(ThreadRunFunction func,
#if defined(_WIN32)
return new ThreadWindows(func, obj, prio, threadName);
#else
- return ThreadLinux::Create(func, obj, prio, threadName);
+ return ThreadPosix::Create(func, obj, prio, threadName);
#endif
}
} // namespace webrtc