I am working on Linux with code that makes a system()
call to run a python program. I am interested in the value returned by this function call to understand how the python program execution went.
So far, I have found 3 results:
When the python process completes successfully, value returned by system() is 0
When the python process is killed mid-execution (using kill -9 pid
), value returned by system() is 9
When the python process fails on its own due to incorrect parameters, value returned by system() is 512
This does not fit with what I've read about system() function.
Furthermore, the code for the python program being invoked shows that it exits with sys.exit(2)
when any error is encountered, and sys.exit(0)
when execution completes successfully.
Could anyone relate these two? Am I interpreting the return value in a wrong manner? Is there some Linux processing involved that takes the argument of the sys.exit()
function of the python program and returns value of system()
based on it?
The exit code of the program you call can be fetched with WEXITSTATUS(status)
as per the manual page. Also see the manual page for wait
.
int status = system("/path/to/my/program");
if (status < 0)
std::cout << "Error: " << strerror(errno) << '\n';
else
{
if (WIFEXITED(status))
std::cout << "Program returned normally, exit code " << WEXITSTATUS(status) << '\n';
else
std::cout << "Program exited abnormaly\n";
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With