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

29,397

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";
}
Share:
29,397
Shailesh Tainwala
Author by

Shailesh Tainwala

Updated on July 05, 2022

Comments

  • Shailesh Tainwala
    Shailesh Tainwala almost 2 years

    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?

  • CroCo
    CroCo over 9 years
    How to do that in Windows 7? What is the header file in which WIFEXITED is defined?
  • Some programmer dude
    Some programmer dude over 9 years
    @CroCo Windows doesn't have the same thing when it comes to exit codes, it's a POSIX thing.