Return value of system() function call in C++, used to run a Python program

c++, linux, python, system

Solution

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";
}

Problem

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?

Original source