-
Notifications
You must be signed in to change notification settings - Fork 159
/
Copy pathcritical_wait_win.cpp
50 lines (38 loc) · 1.01 KB
/
critical_wait_win.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
// Copyright (c) 2014 The Chromium Embedded Framework Authors. All rights
// reserved. Use of this source code is governed by a BSD-style license that
// can be found in the LICENSE file.
#include "critical_wait.h"
// CriticalLock
CriticalLock::CriticalLock() {
lock_ = CreateMutex(nullptr, FALSE, nullptr);
}
CriticalLock::~CriticalLock() {
CloseHandle(lock_);
}
void CriticalLock::Lock() {
WaitForSingleObject(lock_, INFINITE);
}
void CriticalLock::Unlock() {
ReleaseMutex(lock_);
}
// CriticalWait
CriticalWait::CriticalWait(CriticalLock* lock) : lock_(lock) {
cond_ = CreateEvent(nullptr, FALSE, FALSE, nullptr);
}
CriticalWait::~CriticalWait() {
CloseHandle(cond_);
}
void CriticalWait::Wait() {
lock_->Unlock();
WaitForSingleObject(cond_, INFINITE);
lock_->Lock();
}
bool CriticalWait::Wait(unsigned int maxWaitMs) {
lock_->Unlock();
DWORD result = WaitForSingleObject(cond_, (DWORD)maxWaitMs);
lock_->Lock();
return result != WAIT_FAILED;
}
void CriticalWait::WakeUp() {
SetEvent(cond_);
}