aboutsummaryrefslogtreecommitdiff
path: root/src/system_wrappers/source/condition_variable.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/system_wrappers/source/condition_variable.cc')
-rw-r--r--src/system_wrappers/source/condition_variable.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/system_wrappers/source/condition_variable.cc b/src/system_wrappers/source/condition_variable.cc
index 7ca1b567e2..b37d03784f 100644
--- a/src/system_wrappers/source/condition_variable.cc
+++ b/src/system_wrappers/source/condition_variable.cc
@@ -11,16 +11,16 @@
#if defined(_WIN32)
#include <windows.h>
#include "condition_variable_wrapper.h"
- #include "condition_variable_windows.h"
+ #include "condition_variable_win.h"
#elif defined(WEBRTC_LINUX)
#include <pthread.h>
#include "condition_variable_wrapper.h"
- #include "condition_variable_linux.h"
+ #include "condition_variable_posix.h"
#elif defined(WEBRTC_MAC) || defined(WEBRTC_MAC_INTEL)
#include <pthread.h>
#include "condition_variable_wrapper.h"
- #include "condition_variable_linux.h"
- #endif
+ #include "condition_variable_posix.h"
+#endif
namespace webrtc {
ConditionVariableWrapper*
@@ -29,7 +29,7 @@ ConditionVariableWrapper::CreateConditionVariable()
#if defined(_WIN32)
return new ConditionVariableWindows;
#elif defined(WEBRTC_LINUX) || defined(WEBRTC_MAC) || defined(WEBRTC_MAC_INTEL)
- return ConditionVariableLinux::Create();
+ return ConditionVariablePosix::Create();
#else
return NULL;
#endif