Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/Vector35/debugger
/ Release
Method
Release
core/semaphore.cpp:20–25 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
18
using namespace BinaryNinjaDebugger;
19
20
void Semaphore::Release()
21
{
22
std::unique_lock<decltype(m_mutex)> lock(m_mutex);
23
++m_count;
24
m_cv.notify_one();
25
}
26
27
28
void Semaphore::Wait()
Callers
1
ExecuteAdapterAndWait
Method · 0.45
Calls
no outgoing calls
Tested by
no test coverage detected