os/Process

value methods:

release

Releases any resources associated with the proc.

(proc release) -> nil

kill

Kill causes the proc to exit immediately.

(proc kill) -> nil

wait

Waits for the proc to exit, and then returns a os/ProcessState describing its status.

(proc wait) -> state

signal

Sends a signal to the Process.

SignalDesc
SIGABRT0x6
SIGALRM0xe
SIGBUS0xa
SIGCHLD0x14
SIGCONT0x13
SIGEMT0x7
SIGFPE0x8
SIGHUP0x1
SIGILL0x4
SIGINFO0x1d
SIGINT0x2
SIGIO0x17
SIGIOT0x6
SIGKILL0x9
SIGPIPE0xd
SIGPROF0x1b
SIGQUIT0x3
SIGSEGV0xb
SIGSTOP0x11
SIGSYS0xc
SIGTERM0xf
SIGTRAP0x5
SIGTSTP0x12
SIGTTIN0x15
SIGTTOU0x16
SIGURG0x10
SIGUSR10x1e
SIGUSR20x1f
SIGVTALRM0x1a
SIGWINCH0x1c
SIGXCPU0x18
SIGXFSZ0x19
(proc signal s(string)) -> nil