| 545 | } |
| 546 | |
| 547 | void SC::HttpClientLocalMutex::unlock() |
| 548 | { |
| 549 | #if SC_PLATFORM_WINDOWS |
| 550 | LeaveCriticalSection(reinterpret_cast<HttpClientLocalMutexStorage*>(storage)); |
| 551 | #elif SC_PLATFORM_APPLE || SC_PLATFORM_LINUX |
| 552 | (void)pthread_mutex_unlock(reinterpret_cast<HttpClientLocalMutexStorage*>(storage)); |
| 553 | #endif |
| 554 | } |
| 555 | |
| 556 | SC::HttpClientLocalConditionVariable::HttpClientLocalConditionVariable() |
| 557 | { |
no outgoing calls