| 342 | } |
| 343 | |
| 344 | void waitForProcessesThread(ProcessRunner::Results& result, HANDLE job, |
| 345 | UILocker::Session* ls, std::atomic<bool>& interrupt) |
| 346 | { |
| 347 | result = waitForProcessesThreadImpl(job, ls, interrupt); |
| 348 | |
| 349 | // the session can be null when running shortcuts with locking disabled |
| 350 | if (ls) { |
| 351 | ls->unlock(); |
| 352 | } |
| 353 | } |
| 354 | |
| 355 | ProcessRunner::Results waitForProcesses(const std::vector<HANDLE>& initialProcesses, |
| 356 | UILocker::Session* ls) |
nothing calls this directly
no test coverage detected