| 191 | } |
| 192 | |
| 193 | void afThread::detach() |
| 194 | { |
| 195 | std::unique_lock<std::mutex> uMutex(mMutex); |
| 196 | if (mThreadPtr && mThreadPtr->joinable()) { |
| 197 | mThreadPtr->detach(); |
| 198 | } |
| 199 | } |
| 200 | |
| 201 | afThread::~afThread() |
| 202 | { |
no outgoing calls
no test coverage detected