Путеводитель по Руководству Linux

  User  |  Syst  |  Libr  |  Device  |  Files  |  Other  |  Admin  |  Head  |



   killpg.3p    ( 3 )

отправить сигнал группе процессов (send a signal to a process group)

Пролог (Prolog)

This manual page is part of the POSIX Programmer's Manual. The Linux implementation of this interface may differ (consult the corresponding Linux manual page for details of Linux behavior), or the interface may not be implemented on Linux.


Имя (Name)

killpg — send a signal to a process group


Синопсис (Synopsis)

#include <signal.h>

int killpg(pid_t pgrp, int sig);


Описание (Description)

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.


Возвращаемое значение (Return value)

Refer to kill(3p).


Ошибки (Error)

Refer to kill(3p).

The following sections are informative.


Примеры (Examples)

Sending a Signal to All Other Members of a Process Group
       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 */;"


Использование в приложениях (Application usage)

None.


Обоснование (Rationale)

None.


Будущие направления (Future directions)

None.


Смотри также (See also)

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

The Base Definitions volume of POSIX.1‐2017, signal.h(0p)