| 390 | } |
| 391 | |
| 392 | static void ReloadProcessCallback(const ProcessResult& pr) |
| 393 | { |
| 394 | l_Restarting = false; |
| 395 | |
| 396 | std::thread t([pr]() { ReloadProcessCallbackInternal(pr); }); |
| 397 | t.detach(); |
| 398 | } |
| 399 | |
| 400 | pid_t Application::StartReloadProcess() |
| 401 | { |
nothing calls this directly
no test coverage detected