| 166 | } |
| 167 | |
| 168 | void ClientManager::threadStopped() |
| 169 | { |
| 170 | mutex.lock(); |
| 171 | if(--thread_count == 0) { |
| 172 | emit stopped(); |
| 173 | } |
| 174 | mutex.unlock(); |
| 175 | } |
| 176 | |
| 177 | #ifdef Q_OS_UNIX |
| 178 | void ClientManager::hupSignalHandler(int) |
nothing calls this directly
no outgoing calls
no test coverage detected