nn::os::Event::Wait Member Function#include <nn/os.h>
void Wait();
bool Wait(
nn::fnd::TimeSpan timeout
);
| Wait ( ) | Waits until an event enters the signaled state. |
| Wait ( nn::fnd::TimeSpan ) | Waits for an event to enter the signaled state or to timeout. |
Waits for an event to enter the signaled state.
Immediately returns true if an event is in the signaled state. If the event is not in the signaled state, this function waits for at most the length of time specified by timeout, and returns true if it receives a signal by then. Returns false if it does not receive a signal even after waiting for the time specified by timeout.
CONFIDENTIAL