MCPcopy Create free account
hub / github.com/Pagghiu/SaneCppLibraries / signal

Method signal

Libraries/HttpClient/HttpClient.cpp:606–613  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

604}
605
606void SC::HttpClientLocalConditionVariable::signal()
607{
608#if SC_PLATFORM_WINDOWS
609 WakeConditionVariable(reinterpret_cast<HttpClientLocalConditionVariableStorage*>(storage));
610#elif SC_PLATFORM_APPLE || SC_PLATFORM_LINUX
611 (void)pthread_cond_signal(reinterpret_cast<HttpClientLocalConditionVariableStorage*>(storage));
612#endif
613}
614
615void SC::HttpClientLocalConditionVariable::broadcast()
616{

Callers 4

enqueueEventMethod · 0.45
dequeueEventMethod · 0.45
releaseResponseBufferMethod · 0.45
processPendingEventsMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected