When the optional argument whole-group is non-nil the
signal is also sent to all processes in the process group of the subprocess.
The following functions use the signal-process function to send some
common signals to processes.
SIGINT signal to process-object.
(interrupt-process process-object whole-group)
==
(signal-process process-object SIGINT whole-group)
SIGKILL signal to the process-object.
(kill-process process-object whole-group)
==
(signal-process process-object SIGKILL whole-group)
Note that the functions stop-process and continue-process
also send signals to the subprocess.
Go to the first, previous, next, last section, table of contents.