MCPcopy Create free account
hub / github.com/chen3feng/toft / AutoResetEvent

Method AutoResetEvent

system/threading/event.cpp:16–21  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

14// AutoResetEvent staff
15
16AutoResetEvent::AutoResetEvent(bool init_state) :
17 m_mutex(),
18 m_cond(&m_mutex),
19 m_signaled(init_state)
20{
21}
22
23AutoResetEvent::~AutoResetEvent()
24{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected