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,16 @@
PROCESS.KILL(3lua) "3lua" "Callisto manual pages"
# NAME
*process.kill* - kill a process
# SYNOPSIS
*process.kill*(_pid_: *integer*)
# DESCRIPTION
*process.kill* sends *SIGKILL* to the process identified by _pid_.
Equivalent to _process.send(pid, "SIGKILL")_, and fails for all the
reasons *process.send* fails for.
# SEE ALSO
callisto(3lua), process(3lua), process.send(3lua)