diff options
author | n5m <72841454+n5m@users.noreply.github.com> | 2021-01-01 18:01:45 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-01 19:01:45 +0100 |
commit | 5953fbd8347838f162d64e4acdc259fd372210a3 (patch) | |
tree | 80c2b1f1bf077a2a643270b5e9222bd498ef27d5 /lib/pure | |
parent | b5101b23b5291d12ebbee4b8de37ac128ce9b7f4 (diff) | |
download | Nim-5953fbd8347838f162d64e4acdc259fd372210a3.tar.gz |
link to POSIX sendSignal from osproc.kill docs (#16475)
and from osproc.terminate docs
Diffstat (limited to 'lib/pure')
-rw-r--r-- | lib/pure/osproc.nim | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/pure/osproc.nim b/lib/pure/osproc.nim index 9c198e6fa..9cac8e232 100644 --- a/lib/pure/osproc.nim +++ b/lib/pure/osproc.nim @@ -187,6 +187,7 @@ proc terminate*(p: Process) {.rtl, extern: "nosp$1", tags: [].} ## * `suspend proc <#suspend,Process>`_ ## * `resume proc <#resume,Process>`_ ## * `kill proc <#kill,Process>`_ + ## * `posix_utils.sendSignal(pid: Pid, signal: int) <posix_utils.html#sendSignal,Pid,int>`_ proc kill*(p: Process) {.rtl, extern: "nosp$1", tags: [].} ## Kill the process `p`. @@ -198,6 +199,7 @@ proc kill*(p: Process) {.rtl, extern: "nosp$1", tags: [].} ## * `suspend proc <#suspend,Process>`_ ## * `resume proc <#resume,Process>`_ ## * `terminate proc <#terminate,Process>`_ + ## * `posix_utils.sendSignal(pid: Pid, signal: int) <posix_utils.html#sendSignal,Pid,int>`_ proc running*(p: Process): bool {.rtl, extern: "nosp$1", tags: [].} ## Returns true if the process `p` is still running. Returns immediately. |