ipcGetExitStatus
ipcGetExitStatus(o_childId) =>x_status
Description
Returns the exit value of the child process.
If the postFunc callback function is used in the initiation of a process, this call is not necessary.
Arguments
Value Returned
Examples
cid = ipcBeginProcess("ls")
ipc:3
ipcGetExitStatus(cid)
0
cid = ipcBeginProcess("bad_command")
; The command will cause an error
ipc:4
ipcGetExitStatus(cid)
1
Related Topics
Interprocess Communication Functions
Return to top