maeStopAllJobs
maeStopAllJobs( [?sessiont_sessionName] [?jobTypet_jobType] [?forceg_force] [?exitCodet_exitCode] ) => t / nil
Description
Stops all the simulation or netlisting jobs you started during the current session regardless of their state (started, getting configured, running).
Arguments
Value Returned
|
The simulation or netlisting jobs you started during the current session are stopped regardless of their state. |
||
|
Indicates that the specified session or job type is invalid. |
||
Examples
Stops all the jobs for the current session.
maeStopAllJobs()
=>t
Stops all netlister service jobs for the current session.
maeStopAllJobs("netlisting")
=>t
Stops all jobs by sending a SIGKILL signal.
maeStopAllJobs(?force t)
=>t
Stops all jobs and returns the exit code 4.
maeStopAllJobs(?exitCode 4)
=>t
Return to top