| 58 | } |
| 59 | |
| 60 | void CurrentThread::updateProgressOut(const Progress & value) |
| 61 | { |
| 62 | if (unlikely(!current_thread)) |
| 63 | return; |
| 64 | current_thread->progress_out.incrementPiecewiseAtomically(value); |
| 65 | } |
| 66 | |
| 67 | void CurrentThread::attachInternalTextLogsQueue(const std::shared_ptr<InternalTextLogsQueue> & logs_queue, |
| 68 | LogsLevel client_logs_level) |
no test coverage detected