----------------------------------------------------------------------------- Release our lock on the mutex -----------------------------------------------------------------------------
| 78 | // Release our lock on the mutex |
| 79 | //----------------------------------------------------------------------------- |
| 80 | void Mutex::Unlock |
| 81 | ( |
| 82 | ) |
| 83 | { |
| 84 | m_pImpl->Unlock(); |
| 85 | |
| 86 | if( IsSignalled() ) |
| 87 | { |
| 88 | // The mutex has no owners, so notify the watchers |
| 89 | Notify(); |
| 90 | } |
| 91 | } |
| 92 | |
| 93 | //----------------------------------------------------------------------------- |
| 94 | // <Mutex::IsSignalled> |
no outgoing calls
no test coverage detected