killpg() - send signal to a process group
#include <sys/types.h>
#include <signal.h>
int killpg (pid_t pgrp, int signum)
Killpg(3) sends the signal signum to the process group pgrp. See sigaction(2) for a list of signals. If pgrp is 0, killpg(3) sends the signal to the sending process's process group.
The killpg(3) call is successful if the sending process has permission to send signum to any process in the process group list. To be successful, the sending process must have the same user ID as the process group member. As a single special case the continue signal SIGCONT may be sent to any process that is a descendant of the current process.
Upon successful completion, a value of 0 is returned. Otherwise, a value of -1 is returned and the global variable errno is set to indicate the error.
Killpg(3) will fail and no signal will be sent if:
kill(2)
getpgrp(2)
sigaction(2)
signal(2)