Gets the raw status code of the process, as from waitpid().
This value has no particular meaning, but it can be used with the macros defined by the system headers such as WIFEXITED. It can also be used with Spawn.checkExitStatus.
It is more likely that you want to use Subprocess.getIfExited followed by Subprocess.getExitStatus.
It is an error to call this function before Subprocess.wait has returned.
the (meaningless) waitpid() exit status from the kernel
2.40
Gets the raw status code of the process, as from waitpid().
This value has no particular meaning, but it can be used with the macros defined by the system headers such as WIFEXITED. It can also be used with Spawn.checkExitStatus.
It is more likely that you want to use Subprocess.getIfExited followed by Subprocess.getExitStatus.
It is an error to call this function before Subprocess.wait has returned.