MCPcopy 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

18using namespace BinaryNinjaDebugger;
19
20void Semaphore::Release()
21{
22 std::unique_lock<decltype(m_mutex)> lock(m_mutex);
23 ++m_count;
24 m_cv.notify_one();
25}
26
27
28void Semaphore::Wait()

Callers 1

ExecuteAdapterAndWaitMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected