process(3lua): init man pages

Initialise man pages for the process module.
This commit is contained in:
Jeremy Baxter 2024-04-06 19:58:41 +13:00
parent 69f8fff3bd
commit 37d208a5d2
7 changed files with 156 additions and 0 deletions

View file

@ -0,0 +1,25 @@
PROCESS.SEND(3lua) "3lua" "Callisto manual pages"
# NAME
*process.send* - send a signal
# SYNOPSIS
*process.send*(_pid_: *integer*, _sig_: *string*)
# DESCRIPTION
*process.send* sends the signal named _sig_
to the process identitied by _pid_.
If an error occurs,
*process.send* returns nil, an error message and
a platform-dependent error code.
There are a few reasons *process.send* can fail;
see kill(2) for a list of possible error values.
# EXAMPLES
Send *SIGKILL* to a process with command name *bash*:
process.send(process.pidof("bash"), "SIGKILL")
# SEE ALSO
callisto(3lua), process(3lua), kill(2)