Product Documentation
Cadence Interprocess Communication SKILL Reference
Product Version IC23.1, June 2023

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

None

Value Returned

t

Always returns t so it can be used to clean up without failing.

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

ipcKillProcess


Return to top
 ⠀
X