| 532 | } |
| 533 | |
| 534 | void Macro::AddHelperThread(std::thread &&newThread) |
| 535 | { |
| 536 | for (unsigned int i = 0; i < _helperThreads.size(); i++) { |
| 537 | if (!_helperThreads[i].joinable()) { |
| 538 | _helperThreads[i] = std::move(newThread); |
| 539 | return; |
| 540 | } |
| 541 | } |
| 542 | _helperThreads.push_back(std::move(newThread)); |
| 543 | } |
| 544 | |
| 545 | void Macro::SetPauseStateSaveBehavior(PauseStateSaveBehavior behavior) |
| 546 | { |
no test coverage detected