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,24 @@
PROCESS(3lua) "3lua" "Callisto manual pages"
# NAME
*process* - process and signal library
# SYNOPSIS
.Syn
# DESCRIPTION
The *process* library provides routines
to find processes and manipulate them by sending signals.
Signals are passed as strings identifying the signal,
which represent the signal's name as defined in your system's
*<signal.h>*.
Signals are converted from their string name into
the system-dependent numerical constant.
To perform this manually, see process.signum(3lua).
The term _PID_ refers to a process ID;
the unique integer assigned to a process upon execution.
# SEE ALSO
callisto(3lua)