Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "base/synchronization/condition_variable.h" | 5 #include "base/synchronization/condition_variable.h" |
| 6 | 6 |
| 7 #include "base/synchronization/lock.h" | 7 #include "base/synchronization/lock.h" |
| 8 #include "base/threading/thread_restrictions.h" | 8 #include "base/threading/thread_restrictions.h" |
| 9 #include "base/time/time.h" | 9 #include "base/time/time.h" |
| 10 | 10 |
| (...skipping 16 matching lines...) Expand all Loading... | |
| 27 } | 27 } |
| 28 | 28 |
| 29 void ConditionVariable::TimedWait(const TimeDelta& max_time) { | 29 void ConditionVariable::TimedWait(const TimeDelta& max_time) { |
| 30 base::ThreadRestrictions::AssertWaitAllowed(); | 30 base::ThreadRestrictions::AssertWaitAllowed(); |
| 31 DWORD timeout = static_cast<DWORD>(max_time.InMilliseconds()); | 31 DWORD timeout = static_cast<DWORD>(max_time.InMilliseconds()); |
| 32 | 32 |
| 33 #if DCHECK_IS_ON() | 33 #if DCHECK_IS_ON() |
| 34 user_lock_->CheckHeldAndUnmark(); | 34 user_lock_->CheckHeldAndUnmark(); |
| 35 #endif | 35 #endif |
| 36 | 36 |
| 37 if (FALSE == SleepConditionVariableSRW(&cv_, srwlock_, timeout, 0)) { | 37 if (!SleepConditionVariableSRW(&cv_, srwlock_, timeout, 0)) { |
| 38 DCHECK(GetLastError() != WAIT_TIMEOUT); | 38 DCHECK_EQ(static_cast<DWORD>(ERROR_TIMEOUT), GetLastError()); |
|
danakj
2016/06/10 17:37:11
What is the intention of the DCHECK before? It was
robliao
2016/06/10 18:16:12
My interpretation of the DCHECK is that it was a m
danakj
2016/06/10 21:00:09
Ah ok, there are in fact other errors possible. It
sky
2016/09/14 16:35:16
This is a great description of why the DCHECK shou
robliao
2016/09/14 17:49:58
https://codereview.chromium.org/2341773003/ opened
| |
| 39 } | 39 } |
| 40 | 40 |
| 41 #if DCHECK_IS_ON() | 41 #if DCHECK_IS_ON() |
| 42 user_lock_->CheckUnheldAndMark(); | 42 user_lock_->CheckUnheldAndMark(); |
| 43 #endif | 43 #endif |
| 44 } | 44 } |
| 45 | 45 |
| 46 void ConditionVariable::Broadcast() { | 46 void ConditionVariable::Broadcast() { |
| 47 WakeAllConditionVariable(&cv_); | 47 WakeAllConditionVariable(&cv_); |
| 48 } | 48 } |
| 49 | 49 |
| 50 void ConditionVariable::Signal() { | 50 void ConditionVariable::Signal() { |
| 51 WakeConditionVariable(&cv_); | 51 WakeConditionVariable(&cv_); |
| 52 } | 52 } |
| 53 | 53 |
| 54 } // namespace base | 54 } // namespace base |
| OLD | NEW |