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