in reply to Getting a return code from waitpid in Windows
$?
The status returned by the last pipe close, backtick (``) command, successful call to wait() or waitpid(), or from the system() operator. This is just the 16-bit status word returned by the traditional Unix wait() system call (or else is made up to look like it). Thus, the exit value of the subprocess is really ($? >> 8), and $? & 127 gives which signal, if any, the process died from, and $? & 128 reports whether there was a core dump. Additionally, if the h_errno variable is supported in C, its value is returned via $? if any gethost*() function fails. If you have installed a signal handler for SIGCHLD, the value of $? will usually be wrong outside that handler.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Getting a return code from waitpid in Windows
by huskerben (Initiate) on Jan 20, 2014 at 18:15 UTC | |
by ikegami (Patriarch) on Jan 20, 2014 at 20:11 UTC | |
by huskerben (Initiate) on Jan 20, 2014 at 18:46 UTC |