Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/ARM-software/ComputeLibrary
/ signal
Method
signal
support/Semaphore.h:47–54 ·
view source on GitHub ↗
Signals a semaphore */
Source
from the content-addressed store, hash-verified
45
}
46
/** Signals a semaphore */
47
inline void signal()
48
{
49
{
50
std::lock_guard<std::mutex> lock(_m);
51
++_value;
52
}
53
_cv.notify_one();
54
}
55
/** Waits on a semaphore */
56
inline void wait()
57
{
Callers
1
unlock_pool
Method · 0.80
Calls
no outgoing calls
Tested by
no test coverage detected