ipcWait
ipcWait(o_childId[x_interval] [x_timeOut] ) =>t
Description
Causes the parent process to suspend until the child terminates.
This function is like the sleep function in that it allows incoming messages to take effect while waiting.
Arguments
Value Returned
Examples
cid = ipcBeginProcess("sleep 30")
ipc:4
ipcWait(cid)
; Suspends here until the child process terminates
t
Related Topics
Interprocess Communication Functions
Return to top