| 973 | } |
| 974 | |
| 975 | inline void lock(void) { |
| 976 | # if ELPP_OS_UNIX |
| 977 | pthread_mutex_lock(&m_underlyingMutex); |
| 978 | # elif ELPP_OS_WINDOWS |
| 979 | EnterCriticalSection(&m_underlyingMutex); |
| 980 | # endif // ELPP_OS_UNIX |
| 981 | } |
| 982 | |
| 983 | inline bool try_lock(void) { |
| 984 | # if ELPP_OS_UNIX |
no outgoing calls
no test coverage detected