process(deprecated)/kill - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


Home : Support : Online Help : process(deprecated)/kill

process

  

kill

  

kills the processes with the specified process IDs

 

Calling Sequence

Parameters

Description

Calling Sequence

kill(pid ...)

Parameters

pid

-

one or more process IDs

Description

• 

Important: The process package has been deprecated. Use the superseding package Threads instead.

• 

The kill command kills one or more processes that were created with fork.

• 

This can be useful if several child processes were created to work in parallel, one has completed, and the rest are to be terminated.

• 

kill can also be used to kill other processes if one knows their process IDs.

• 

The kill function is only available on platforms that support true concurrent processing (for example, UNIX).

• 

The command with(process,kill) allows the use of the abbreviated form of this command.

See Also

process(deprecated)[fork]

Threads