| 47 | } |
| 48 | |
| 49 | void IOThread::onForegroundChannelChanged(int channel) { |
| 50 | _jobListMutex.lock(); |
| 51 | for (unsigned int i = 0; i < _workers.size(); ++i) { |
| 52 | _workers[i]->setForegroundChannel(channel); |
| 53 | } |
| 54 | _jobListMutex.unlock(); |
| 55 | } |
| 56 | |
| 57 | void IOThread::onLUTChanged(const pathology::LUT& LUT) { |
| 58 | _jobListMutex.lock(); |
no test coverage detected