Merge "Use sleep_for for fsck timeout"

This commit is contained in:
Treehugger Robot 2022-12-17 00:28:27 +00:00 committed by Gerrit Code Review
commit 0777c5d604

View file

@ -766,7 +766,7 @@ status_t ForkExecvpTimeout(const std::vector<std::string>& args, std::chrono::se
}
pid_t timer_pid = fork();
if (timer_pid == 0) {
sleep(timeout.count());
std::this_thread::sleep_for(timeout);
_exit(ETIMEDOUT);
}
if (timer_pid == -1) {