| 989 | } |
| 990 | |
| 991 | inline void unlock(void) { |
| 992 | # if ELPP_OS_UNIX |
| 993 | pthread_mutex_unlock(&m_underlyingMutex); |
| 994 | # elif ELPP_OS_WINDOWS |
| 995 | LeaveCriticalSection(&m_underlyingMutex); |
| 996 | # endif // ELPP_OS_UNIX |
| 997 | } |
| 998 | |
| 999 | private: |
| 1000 | # if ELPP_OS_UNIX |
no outgoing calls
no test coverage detected