killpg - send a signal to a process group
The killpg() function shall send the signal specified by sig to the process group specified by pgrp.
If pgrp is greater than 1, killpg(pgrp, sig) shall be equivalent to kill(-pgrp, sig). If pgrp is less than or equal to 1, the behavior of killpg() is undefined.
Refer to kill() .
Refer to kill() .
None.
None.
None.
None.
getpgid() , getpid() , kill() , raise() , the Base Definitions volume of IEEE Std 1003.1-2001, <signal.h>
First released in Issue 4, Version 2.
Moved from X/OPEN UNIX extension to BASE.