Skip to main content
function Deno.kill

Send a signal to process under given pid.

If pid is negative, the signal will be sent to the process group identified by pid.

 const p = Deno.run({
   cmd: ["sleep", "10000"]
 });

 Deno.kill(p.pid, "SIGINT");

Requires allow-run permission.

Parameters

pid: number
signo: Signal