| 120 | } |
| 121 | |
| 122 | void OMXThread::UnLock() |
| 123 | { |
| 124 | if(!m_running) |
| 125 | { |
| 126 | CLog::Log(LOGDEBUG, "%s::%s - No thread running\n", CLASSNAME, __func__); |
| 127 | return; |
| 128 | } |
| 129 | |
| 130 | pthread_mutex_unlock(&m_lock); |
| 131 | } |
| 132 |
nothing calls this directly
no outgoing calls
no test coverage detected