2011-07-07 08:21:25 +00:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
|
|
|
|
|
*
|
|
|
|
|
* Use of this source code is governed by a BSD-style license
|
|
|
|
|
* that can be found in the LICENSE file in the root of the source
|
|
|
|
|
* tree. An additional intellectual property rights grant can be found
|
|
|
|
|
* in the file PATENTS. All contributing project authors may
|
|
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
|
|
|
*/
|
|
|
|
|
|
2011-08-01 17:04:04 +00:00
|
|
|
#ifndef WEBRTC_SYSTEM_WRAPPERS_SOURCE_CONDITION_VARIABLE_POSIX_H_
|
|
|
|
|
#define WEBRTC_SYSTEM_WRAPPERS_SOURCE_CONDITION_VARIABLE_POSIX_H_
|
2011-07-07 08:21:25 +00:00
|
|
|
|
|
|
|
|
#include <pthread.h>
|
|
|
|
|
|
2013-05-27 15:07:45 +00:00
|
|
|
#include "webrtc/system_wrappers/interface/condition_variable_wrapper.h"
|
2012-11-14 09:55:04 +00:00
|
|
|
|
2011-07-07 08:21:25 +00:00
|
|
|
namespace webrtc {
|
2012-11-14 09:55:04 +00:00
|
|
|
|
|
|
|
|
class ConditionVariablePosix : public ConditionVariableWrapper {
|
|
|
|
|
public:
|
|
|
|
|
static ConditionVariableWrapper* Create();
|
|
|
|
|
~ConditionVariablePosix();
|
|
|
|
|
|
|
|
|
|
void SleepCS(CriticalSectionWrapper& crit_sect);
|
|
|
|
|
bool SleepCS(CriticalSectionWrapper& crit_sect, unsigned long max_time_in_ms);
|
|
|
|
|
void Wake();
|
|
|
|
|
void WakeAll();
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
ConditionVariablePosix();
|
|
|
|
|
int Construct();
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
pthread_cond_t cond_;
|
2011-07-07 08:21:25 +00:00
|
|
|
};
|
2012-11-14 09:55:04 +00:00
|
|
|
|
2011-07-07 08:21:25 +00:00
|
|
|
} // namespace webrtc
|
|
|
|
|
|
2012-11-14 09:55:04 +00:00
|
|
|
#endif // WEBRTC_SYSTEM_WRAPPERS_SOURCE_CONDITION_VARIABLE_POSIX_H_
|