diff options
author | Mark Wielaard <mark@klomp.org> | 2023-08-24 21:36:34 +0200 |
---|---|---|
committer | Mark Wielaard <mark@klomp.org> | 2023-08-25 11:43:30 +0200 |
commit | 5a21cefd5abab1b99eda1fbf84204a9bf41662ab (patch) | |
tree | 2bf53e32f55eead7a981ae243b132d27e5a46cb3 /manual | |
parent | ddbb74f5c2ceffcb8f6efcbbb5ffbe4a3641ef93 (diff) | |
download | glibc-5a21cefd5abab1b99eda1fbf84204a9bf41662ab.zip glibc-5a21cefd5abab1b99eda1fbf84204a9bf41662ab.tar.gz glibc-5a21cefd5abab1b99eda1fbf84204a9bf41662ab.tar.bz2 |
manual/jobs.texi: Add missing @item EPERM for getpgid
The missing @item makes it look like errno will be set to ESRCH
if a cross-session getpgid is not permitted.
Found by ulfvonbelow on irc.
Diffstat (limited to 'manual')
-rw-r--r-- | manual/job.texi | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/manual/job.texi b/manual/job.texi index 42cb9fb..8157f13 100644 --- a/manual/job.texi +++ b/manual/job.texi @@ -1133,6 +1133,7 @@ following @code{errno} error conditions are defined for this function: @table @code @item ESRCH There is no process with the given process ID @var{pid}. +@item EPERM The calling process and the process specified by @var{pid} are in different sessions, and the implementation doesn't allow to access the process group ID of the process with ID @var{pid} from the calling |