1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "base/synchronization/condition_variable.h"
10 #include "base/logging.h"
11 #include "base/synchronization/lock.h"
12 #include "base/threading/thread_restrictions.h"
13 #include "base/time.h"
17 ConditionVariable::ConditionVariable(Lock
* user_lock
)
18 : user_mutex_(user_lock
->lock_
.os_lock())
20 , user_lock_(user_lock
)
23 int rv
= pthread_cond_init(&condition_
, NULL
);
27 ConditionVariable::~ConditionVariable() {
28 int rv
= pthread_cond_destroy(&condition_
);
32 void ConditionVariable::Wait() {
33 base::ThreadRestrictions::AssertWaitAllowed();
35 user_lock_
->CheckHeldAndUnmark();
37 int rv
= pthread_cond_wait(&condition_
, user_mutex_
);
40 user_lock_
->CheckUnheldAndMark();
44 void ConditionVariable::TimedWait(const TimeDelta
& max_time
) {
45 base::ThreadRestrictions::AssertWaitAllowed();
46 int64 usecs
= max_time
.InMicroseconds();
48 // The timeout argument to pthread_cond_timedwait is in absolute time.
50 gettimeofday(&now
, NULL
);
52 struct timespec abstime
;
53 abstime
.tv_sec
= now
.tv_sec
+ (usecs
/ Time::kMicrosecondsPerSecond
);
54 abstime
.tv_nsec
= (now
.tv_usec
+ (usecs
% Time::kMicrosecondsPerSecond
)) *
55 Time::kNanosecondsPerMicrosecond
;
56 abstime
.tv_sec
+= abstime
.tv_nsec
/ Time::kNanosecondsPerSecond
;
57 abstime
.tv_nsec
%= Time::kNanosecondsPerSecond
;
58 DCHECK_GE(abstime
.tv_sec
, now
.tv_sec
); // Overflow paranoia
61 user_lock_
->CheckHeldAndUnmark();
63 int rv
= pthread_cond_timedwait(&condition_
, user_mutex_
, &abstime
);
64 DCHECK(rv
== 0 || rv
== ETIMEDOUT
);
66 user_lock_
->CheckUnheldAndMark();
70 void ConditionVariable::Broadcast() {
71 int rv
= pthread_cond_broadcast(&condition_
);
75 void ConditionVariable::Signal() {
76 int rv
= pthread_cond_signal(&condition_
);