ipcKillAllProcesses
ipcKillAllProcesses(
)
=> t
Description
Kills every process initiated by the parent through one of the ipcBeginProcess class of functions.
This call terminates all processes initiated by other applications active in the same parent process.
Arguments
Value Returned
|
Always returns |
Examples
c1 = ipcBeginProcess("sleep 100")
ipc:11
c2 = ipcBeginProcess("sleep 100")
ipc:12
c1
ipc:11
c2
ipc:12
ipcKillAllProcesses()
t
c1
ipc:11
c2
ipc:12
Related Topics
Interprocess Communication Functions
Return to top