MCPcopy Create free account
hub / github.com/crownengine/crown / signal

Method signal

src/core/thread/condition_variable.cpp:98–107  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

96}
97
98void ConditionVariable::signal()
99{
100#if CROWN_PLATFORM_WINDOWS
101 WakeConditionVariable(&_priv->cv);
102#else
103 int err = pthread_cond_signal(&_priv->cond);
104 CE_ASSERT(err == 0, "pthread_cond_signal: errno = %d", err);
105 CE_UNUSED(err);
106#endif
107}
108
109} // namespace crown

Callers 8

callbackMethod · 0.80
~ResourceLoaderMethod · 0.80
add_requestMethod · 0.80
shutdownMethod · 0.80
sendMethod · 0.80
~SaveGameMethod · 0.80
queue_requestMethod · 0.80

Calls

no outgoing calls

Tested by 1

callbackMethod · 0.64