1.\" Copyright (c) 1983, 1991, 1993 2.\" The Regents of the University of California. All rights reserved. 3.\" 4.\" Redistribution and use in source and binary forms, with or without 5.\" modification, are permitted provided that the following conditions 6.\" are met: 7.\" 1. Redistributions of source code must retain the above copyright 8.\" notice, this list of conditions and the following disclaimer. 9.\" 2. Redistributions in binary form must reproduce the above copyright 10.\" notice, this list of conditions and the following disclaimer in the 11.\" documentation and/or other materials provided with the distribution. 12.\" 3. Neither the name of the University nor the names of its contributors 13.\" may be used to endorse or promote products derived from this software 14.\" without specific prior written permission. 15.\" 16.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 17.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 18.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 19.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 20.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 21.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 22.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 23.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 24.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 25.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 26.\" SUCH DAMAGE. 27.\" 28.\" @(#)getpgrp.2 8.1 (Berkeley) 6/4/93 29.\" $FreeBSD$ 30.\" 31.Dd June 4, 1993 32.Dt GETPGRP 2 33.Os 34.Sh NAME 35.Nm getpgrp 36.Nd get process group 37.Sh LIBRARY 38.Lb libc 39.Sh SYNOPSIS 40.In unistd.h 41.Ft pid_t 42.Fn getpgrp void 43.Ft pid_t 44.Fn getpgid "pid_t pid" 45.Sh DESCRIPTION 46The process group of the current process is returned by 47.Fn getpgrp . 48The process group of the process identified by 49.Fa pid 50is returned by 51.Fn getpgid . 52If 53.Fa pid 54is zero, 55.Fn getpgid 56returns the process group of the current process. 57.Pp 58Process groups are used for distribution of signals, and 59by terminals to arbitrate requests for their input: processes 60that have the same process group as the terminal are foreground 61and may read, while others will block with a signal if they attempt 62to read. 63.Pp 64This system call is thus used by programs such as 65.Xr csh 1 66to create 67process groups 68in implementing job control. 69The 70.Fn tcgetpgrp 71and 72.Fn tcsetpgrp 73calls 74are used to get/set the process group of the control terminal. 75.Sh RETURN VALUES 76The 77.Fn getpgrp 78system call always succeeds. 79Upon successful completion, the 80.Fn getpgid 81system call returns the process group of the specified process; 82otherwise, it returns a value of \-1 and sets 83.Va errno 84to indicate the error. 85.Sh COMPATIBILITY 86This version of 87.Fn getpgrp 88differs from past Berkeley versions by not taking a 89.Fa "pid_t pid" 90argument. 91This incompatibility is required by 92.St -p1003.1-90 . 93.Pp 94From the 95.St -p1003.1-90 96Rationale: 97.Pp 98.Bx 4.3 99provides a 100.Fn getpgrp 101system call that returns the process group ID for a specified process. 102Although this function is used to support job control, all known 103job-control shells always specify the calling process with this 104function. 105Thus, the simpler 106.At V 107.Fn getpgrp 108suffices, and the added complexity of the 109.Bx 4.3 110.Fn getpgrp 111has been omitted from POSIX.1. 112The old functionality is available from the 113.Fn getpgid 114system call. 115.Sh ERRORS 116The 117.Fn getpgid 118system call 119will succeed unless: 120.Bl -tag -width Er 121.It Bq Er ESRCH 122there is no process whose process ID equals 123.Fa pid 124.El 125.Sh SEE ALSO 126.Xr getsid 2 , 127.Xr setpgid 2 , 128.Xr termios 4 129.Sh STANDARDS 130The 131.Fn getpgrp 132system call is expected to conform to 133.St -p1003.1-90 . 134.Sh HISTORY 135The 136.Fn getpgrp 137system call appeared in 138.Bx 4.0 . 139The 140.Fn getpgid 141system call is derived from its usage in 142.At V.4 . 143