ipcActivateBatch
ipcActivateBatch(o_childId) =>t/nil
Description
Switches a child process to batch mode.
This means that output from the child is written only to the log file given when the child was created.
The child process must have started its life through either ipcBeginProcess or ipcSkillProcess and a log file must have been given. An error could result if these conditions are not met.
Arguments
Value Returned
Examples
cid = ipcBeginProcess("ls -lR /" "" nil nil nil
"/tmp/ls.log")
ipc:3
ipcActivateBatch(cid)
; Write output to log file /tmp/ls.log only
t
ipcActivateMessages(cid) ; Output is written to the
; log file and passed
; to parent process
t
Related Topics
Interprocess Communication Functions
Return to top