KILLPG(3) Library Functions Manual KILLPG(3)

killpgsend a signal to a process group


#include <signal.h>

int killpg(pid_t pgrp, int sig);

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 (- pgrp, sig). If pgrp is less than or equal to 1, the behavior of killpg () is undefined.

Refer to kill(3) .

Refer to kill(3) .

The following example shows how the calling process could send a signal to all other members of its process group. To prevent itself from receiving the signal it first makes itself immune to the signal by ignoring it.

#include <signal.h>
#include <unistd.h>
...
    if (signal(SIGUSR1, SIG_IGN) == SIG_ERR)
        /* Handle error */;


    if (killpg(getpgrp(), SIGUSR1) == -1)
        /* Handle error */;"

None.

None.

None.

getpgid(3) , getpid(3) , kill(3) , raise(3)

XBD <signal.h>

First released in Issue 4, Version 2.

Moved from X/OPEN UNIX extension to BASE.

IEEE Std 1003.1-2001 (“POSIX.1”)/Cor 2-2004, item XSH/TC2/D6/52 is applied, adding the example to the EXAMPLES section.

January 1, 2008 posix.fail