Searched refs:m_blockLock (Results 1 – 2 of 2) sorted by relevance
/external/webkit/JavaScriptCore/wtf/ |
D | ThreadingWin.cpp | 335 DWORD res = WaitForSingleObject(m_blockLock, INFINITE); in timedWait() 338 res = ReleaseSemaphore(m_blockLock, 1, 0); in timedWait() 357 res = WaitForSingleObject(m_blockLock, INFINITE); in timedWait() 360 res = ReleaseSemaphore(m_blockLock, 1, 0); in timedWait() 369 res = ReleaseSemaphore(m_blockLock, 1, 0); // Open the gate. in timedWait() 402 res = WaitForSingleObject(m_blockLock, INFINITE); // Close the gate. in signal() 439 m_condition.m_blockLock = CreateSemaphore(0, 1, 1, 0); in ThreadCondition() 443 if (!m_condition.m_blockLock || !m_condition.m_blockQueue || !m_condition.m_unblockLock) { in ThreadCondition() 444 if (m_condition.m_blockLock) in ThreadCondition() 445 CloseHandle(m_condition.m_blockLock); in ThreadCondition() [all …]
|
D | Threading.h | 157 HANDLE m_blockLock; member
|