kill multimethod
Methods
- kill(pid:Int, sig:Int=15) Source: stdlib.ngs:7018
Send signal to a process. Uses KILL(2). Throws KillFail on error. Parameters
sig Signal to send. Defaults to SIGNALS.TERM Returns
unspecified at this time, do not count on it
- kill(p:Process, sig:Int=15) Source: stdlib.ngs:7031
Send signal to a Process. Uses KILL(2). Throws InvalidArgument if Process does not have "pid". Throws KillFail on error. Parameters
sig Signal to send. Defaults to SIGNALS.TERM Returns
unspecified at this time, do not count on it
- kill(pp:ProcessesPipeline, sig:Int=15) Source: stdlib.ngs:7037
Kill all processes in the ProcessesPipeline. Throws InvalidArgument if ProcessesPipeline is not running (yet).