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

ipcStopProcess

ipcStopProcess( 
o_childId 
) 
=> t / nil

Description

Causes the child process to suspend its execution. This is equivalent to sending a STOP signal through the UNIX kill command.

Arguments

o_childId

Child process handle.

Value Returned

t

The child process is still active.

nil

The child has already expired.

Examples

      cid = ipcBeginProcess("ls -lR /")
ipc:4
ipcIsActiveProcess(cid)
t
ipcStopProcess(cid) ; Stop the execution
t
ipcIsActiveProcess(cid)
nil
ipcContProcess(cid) ; Resume the execution
t
ipcIsActiveProcess(cid)
t

Related Topics

Interprocess Communication Functions

ipcContProcess


Return to top
 ⠀
X