MCPcopy Create free account
hub / github.com/OGRECave/ogre-next / wait

Method wait

OgreMain/src/Threading/OgreWaitableEvent.cpp:46–50  ·  view source on GitHub ↗

-----------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

44 WaitableEvent::~WaitableEvent() { CloseHandle( mEvent ); }
45 //-----------------------------------------------------------------------------------
46 bool WaitableEvent::wait()
47 {
48 DWORD result = WaitForSingleObject( mEvent, INFINITE );
49 return result == WAIT_OBJECT_0;
50 }
51 //-----------------------------------------------------------------------------------
52 void WaitableEvent::wake()
53 {

Callers 7

_waitForMethod · 0.45
startupMethod · 0.45
shutdownMethod · 0.45
getMercurialBranchNameFunction · 0.45
getGitBranchNameFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected