diff options
| author | Alejandro Colomar <alx@kernel.org> | 2024-04-26 15:06:49 +0200 |
|---|---|---|
| committer | Alejandro Colomar <alx@kernel.org> | 2024-05-02 01:24:19 +0200 |
| commit | dcde2f70372b49ec43efc5db864c9ff585d0a2dd (patch) | |
| tree | 78b9b7425130e4a5858e4c01a524d802423879ed /man3/killpg.3 | |
| parent | 12aca537ce78a41bbcdaf485209691e10f8002d7 (diff) | |
| download | man-pages-dcde2f70372b49ec43efc5db864c9ff585d0a2dd.tar.gz | |
man/, share/mk/: Move man*/ to man/
This is a scripted change:
$ mkdir man/;
$ mv man* man/;
$ ln -st . man/man*;
$ find share/mk/ -type f \
| xargs grep -l '^MANDIR *:=' \
| xargs sed -i '/^MANDIR *:=/s,$,/man,';
$ find share/mk/dist/ -type f \
| xargs grep -l man \
| xargs sed -i 's,man%,man/%,g';
Link: <https://lore.kernel.org/linux-man/YxcV4h+Xn7cd6+q2@pevik/T/>
Cc: Petr Vorel <pvorel@suse.cz>
Cc: Jakub Wilk <jwilk@jwilk.net>
Cc: Stefan Puiu <stefan.puiu@gmail.com>
Signed-off-by: Alejandro Colomar <alx@kernel.org>
Diffstat (limited to 'man3/killpg.3')
| -rw-r--r-- | man3/killpg.3 | 113 |
1 files changed, 0 insertions, 113 deletions
diff --git a/man3/killpg.3 b/man3/killpg.3 deleted file mode 100644 index bec05d8be9..0000000000 --- a/man3/killpg.3 +++ /dev/null @@ -1,113 +0,0 @@ -.\" Copyright (c) 1980, 1991 Regents of the University of California. -.\" All rights reserved. -.\" -.\" SPDX-License-Identifier: BSD-4-Clause-UC -.\" -.\" @(#)killpg.2 6.5 (Berkeley) 3/10/91 -.\" -.\" Modified Fri Jul 23 21:55:01 1993 by Rik Faith <faith@cs.unc.edu> -.\" Modified Tue Oct 22 08:11:14 EDT 1996 by Eric S. Raymond <esr@thyrsus.com> -.\" Modified 2004-06-16 by Michael Kerrisk <mtk.manpages@gmail.com> -.\" Added notes on CAP_KILL -.\" Modified 2004-06-21 by aeb -.\" -.TH killpg 3 (date) "Linux man-pages (unreleased)" -.SH NAME -killpg \- send signal to a process group -.SH LIBRARY -Standard C library -.RI ( libc ", " \-lc ) -.SH SYNOPSIS -.nf -.B #include <signal.h> -.P -.BI "int killpg(int " pgrp ", int " sig ); -.fi -.P -.RS -4 -Feature Test Macro Requirements for glibc (see -.BR feature_test_macros (7)): -.RE -.P -.BR killpg (): -.nf - _XOPEN_SOURCE >= 500 -.\" || _XOPEN_SOURCE && _XOPEN_SOURCE_EXTENDED - || /* Since glibc 2.19: */ _DEFAULT_SOURCE - || /* glibc <= 2.19: */ _BSD_SOURCE -.fi -.SH DESCRIPTION -.BR killpg () -sends the signal -.I sig -to the process group -.IR pgrp . -See -.BR signal (7) -for a list of signals. -.P -If -.I pgrp -is 0, -.BR killpg () -sends the signal to the calling process's process group. -(POSIX says: if -.I pgrp -is less than or equal to 1, the behavior is undefined.) -.P -For the permissions required to send a signal to another process, see -.BR kill (2). -.SH RETURN VALUE -On success, zero is returned. -On error, \-1 is returned, and -.I errno -is set to indicate the error. -.SH ERRORS -.TP -.B EINVAL -.I sig -is not a valid signal number. -.TP -.B EPERM -The process does not have permission to send the signal -to any of the target processes. -For the required permissions, see -.BR kill (2). -.TP -.B ESRCH -No process can be found in the process group specified by -.IR pgrp . -.TP -.B ESRCH -The process group was given as 0 but the sending process does not -have a process group. -.SH VERSIONS -There are various differences between the permission checking -in BSD-type systems and System\ V-type systems. -See the POSIX rationale for -.BR kill (3p). -A difference not mentioned by POSIX concerns the return -value -.BR EPERM : -BSD documents that no signal is sent and -.B EPERM -returned when the permission check failed for at least one target process, -while POSIX documents -.B EPERM -only when the permission check failed for all target processes. -.SS C library/kernel differences -On Linux, -.BR killpg () -is implemented as a library function that makes the call -.IR "kill(\-pgrp,\ sig)" . -.SH STANDARDS -POSIX.1-2008. -.SH HISTORY -POSIX.1-2001, SVr4, 4.4BSD -(first appeared in 4BSD). -.SH SEE ALSO -.BR getpgrp (2), -.BR kill (2), -.BR signal (2), -.BR capabilities (7), -.BR credentials (7) |
