ipcWaitForProcess
ipcWaitForProcess(o_childId[x_timeOut] ) =>t
Description
Causes the parent process to suspend until the child process is alive and ready for communication.
This function is normally used in conjunction with one of the ipcBeginProcess class of functions.
Arguments
Value Returned
Examples
cid = ipcBeginProcess("hostname")
ipc:6
ipcWaitForProcess(cid)
; Wait for the child process coming up
; to guarantee a safe read
t
ipcReadProcess(cid)
"foghorn\n"
Related Topics
Interprocess Communication Functions
Return to top