| 35 | } |
| 36 | |
| 37 | FilterThread::~FilterThread() |
| 38 | { |
| 39 | stopFilter(); |
| 40 | _mutex.lock(); |
| 41 | |
| 42 | _abort = true; |
| 43 | _mutex.unlock(); |
| 44 | while (isRunning()) { |
| 45 | _condition.wakeOne(); |
| 46 | } |
| 47 | |
| 48 | wait(); |
| 49 | } |
| 50 | |
| 51 | void FilterThread::updateFilterResult() { |
| 52 | stopFilter(); |
nothing calls this directly
no outgoing calls
no test coverage detected