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

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



   setpgrp.3p    ( 3 )

установить идентификатор группы процессов (set the process group ID)

Пролог (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)

setpgrp — set the process group ID


Синопсис (Synopsis)

#include <unistd.h>

pid_t setpgrp(void);


Описание (Description)

If the calling process is not already a session leader, setpgrp() sets the process group ID of the calling process to the process ID of the calling process. If setpgrp() creates a new session, then the new session has no controlling terminal.

The setpgrp() function has no effect when the calling process is a session leader.


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

Upon completion, setpgrp() shall return the process group ID.


Ошибки (Error)

No errors are defined.

The following sections are informative.


Примеры (Examples)

None.

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

It is unspecified whether this function behaves as setpgid(0,0) or setsid() unless the process is already a session leader. Therefore, applications are encouraged to use setpgid() or setsid() as appropriate.


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

None.


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

The setpgrp() function may be removed in a future version.


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

exec(1p), fork(3p), getpid(3p), getsid(3p), kill(3p), setpgid(3p), setsid(3p)

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