LibCore: Make Process::wait_for_termination return exit code
Some checks are pending
CI / Lagom (false, NO_FUZZ, macos-15, macOS, Clang) (push) Waiting to run
CI / Lagom (false, FUZZ, ubuntu-24.04, Linux, Clang) (push) Waiting to run
CI / Lagom (false, NO_FUZZ, ubuntu-24.04, Linux, GNU) (push) Waiting to run
CI / Lagom (true, NO_FUZZ, ubuntu-24.04, Linux, Clang) (push) Waiting to run
Package the js repl as a binary artifact / build-and-package (macos-14, macOS, macOS-universal2) (push) Waiting to run
Package the js repl as a binary artifact / build-and-package (ubuntu-24.04, Linux, Linux-x86_64) (push) Waiting to run
Run test262 and test-wasm / run_and_update_results (push) Waiting to run
Lint Code / lint (push) Waiting to run
Push notes / build (push) Waiting to run

This commit is contained in:
stasoid 2024-11-18 06:18:40 +05:00 committed by Andrew Kaster
parent 3468a83e45
commit 866609c682
Notes: github-actions[bot] 2024-11-19 22:28:23 +00:00
3 changed files with 8 additions and 9 deletions

View file

@ -335,19 +335,19 @@ ErrorOr<void> Process::disown()
}
}
ErrorOr<bool> Process::wait_for_termination()
ErrorOr<int> Process::wait_for_termination()
{
VERIFY(m_pid > 0);
bool exited_with_code_0 = true;
int exit_code = -1;
int status;
if (waitpid(m_pid, &status, 0) == -1)
return Error::from_syscall("waitpid"sv, errno);
if (WIFEXITED(status)) {
exited_with_code_0 &= WEXITSTATUS(status) == 0;
exit_code = WEXITSTATUS(status);
} else if (WIFSIGNALED(status)) {
exited_with_code_0 = false;
exit_code = 128 + WTERMSIG(status);
} else if (WIFSTOPPED(status)) {
// This is only possible if the child process is being traced by us.
VERIFY_NOT_REACHED();
@ -356,7 +356,7 @@ ErrorOr<bool> Process::wait_for_termination()
}
m_should_disown = false;
return exited_with_code_0;
return exit_code;
}
}

View file

@ -79,8 +79,7 @@ public:
ErrorOr<void> disown();
#endif
// FIXME: Make it return an exit code.
ErrorOr<bool> wait_for_termination();
ErrorOr<int> wait_for_termination();
private:
#ifndef AK_OS_WINDOWS

View file

@ -146,7 +146,7 @@ pid_t Process::pid() const
return GetProcessId(m_handle);
}
ErrorOr<bool> Process::wait_for_termination()
ErrorOr<int> Process::wait_for_termination()
{
auto result = WaitForSingleObject(m_handle, INFINITE);
if (result == WAIT_FAILED)
@ -156,7 +156,7 @@ ErrorOr<bool> Process::wait_for_termination()
if (!GetExitCodeProcess(m_handle, &exit_code))
return Error::from_windows_error(GetLastError());
return !exit_code;
return exit_code;
}
}