aboutsummaryrefslogtreecommitdiff
path: root/lib/libc/sys/kill.2
Commit message (Collapse)AuthorAgeFilesLines
* Remove $FreeBSD$: one-line nroff patternWarner Losh2023-08-231-1/+0
| | | | | | | Remove /^\.\\"\s*\$FreeBSD\$$\n/ Similar commit in main: (cherry picked from commit b2c76c41be32)
* Only return EPERM from kill(-pid) when no process was signalled.Konstantin Belousov2019-12-071-5/+4
| | | | | | | | | | | | | | | | | As mandated by POSIX. Also clarify the kill(2) manpage. While there, restructure the code in killpg1() to use helper which keeps overall state of the process list iteration in the killpg1_ctx structued, later used to infer the error returned. Reported by: amdmi3 Reviewed by: jilles Sponsored by: The FreeBSD Foundation MFC after: 2 weeks Differential revision: https://reviews.freebsd.org/D22621 Notes: svn path=/head/; revision=355500
* Correct history for Unix 2nd Edition through 6th Edition for theWarner Losh2017-12-011-3/+7
| | | | | | | | | | | system calls. Man pages are missing for v2 and v5, so any entries for those versions were inferred by new implementations of these functions in libc. Obtained from: http://www.tuhs.org/cgi-bin/utree.pl Notes: svn path=/head/; revision=326437
* kill(2): add missing section for sysctl(9)Enji Cooper2017-05-231-1/+1
| | | | | | | | | Reported by: make manlint MFC after: 2 weeks Sponsored by: Dell EMC Isilon Notes: svn path=/head/; revision=318721
* Renumber copyright clause 4Warner Losh2017-02-281-1/+1
| | | | | | | | | | | | Renumber cluase 4 to 3, per what everybody else did when BSD granted them permission to remove clause 3. My insistance on keeping the same numbering for legal reasons is too pedantic, so give up on that point. Submitted by: Jan Schaumann <jschauma@stevens.edu> Pull Request: https://github.com/freebsd/freebsd/pull/96 Notes: svn path=/head/; revision=314436
* Update the kill(2) and killpg(2) man pages to the modern permissionEitan Adler2012-10-221-8/+15
| | | | | | | | | | | | checks. Also indicate killpg(2) is POSIX compliant. Reviewed by: jilles Reviewed by: wblock Approved by: cperciva MFC after: 3 days Notes: svn path=/head/; revision=241855
* Extend the description for ESRCH a bit.Ed Schouten2012-03-151-1/+1
| | | | | | | | | | | This errno can also be returned if the passed process identifier doesn't correspond with a process group. Discussed on: arch@ MFC after: 1 week Notes: svn path=/head/; revision=233003
* Remove impossible error condition from the man page.Ed Schouten2012-03-151-4/+1
| | | | | | | | | | | | On FreeBSD, all processes have a process group, so it is impossible for kill(2) to fail this way. POSIX also doesn't mention this error condition. Discussed on: arch@ MFC after: 3 weeks Notes: svn path=/head/; revision=233002
* Cross-reference sigqueue(2) and kill(2).Edward Tomasz Napierala2012-03-101-1/+2
| | | | Notes: svn path=/head/; revision=232778
* Per Regents of the University of Calfornia letter, remove advertisingWarner Losh2007-01-091-4/+0
| | | | | | | | | clause. # If I've done so improperly on a file, please let me know. Notes: svn path=/head/; revision=165903
* - fix description of what processes SIGCONT can be sent toKen Smith2003-10-241-1/+1
| | | | | | | | | PR: docs/58413 Reviewed by: rwatson Approved by: blackend (mentor) Notes: svn path=/head/; revision=121484
* mdoc(7) police: "The .Fa argument.".Ruslan Ermilov2002-12-191-4/+12
| | | | Notes: svn path=/head/; revision=108087
* mdoc(7) police: Tidy up the syscall language.Ruslan Ermilov2002-12-181-5/+7
| | | | | | | | | | | | | Stop calling system calls "function calls". Use "The .Fn system call" a-la "The .Nm utility". When referring to a non-BSD implementation in the HISTORY section, call syscall a function, to be safe. Notes: svn path=/head/; revision=108028
* mdoc(7) police: Use the new .In macro for #include statements.Ruslan Ermilov2001-10-011-2/+2
| | | | Notes: svn path=/head/; revision=84306
* Xref raise(3).Dima Dorfman2001-08-171-0/+1
| | | | Notes: svn path=/head/; revision=81853
* Use the ``.Rv -std'' mdoc(7) macro in appropriate cases.Yaroslav Tykhiy2001-08-091-4/+1
| | | | | | | Reviewed by: ru Notes: svn path=/head/; revision=81352
* mdoc(7) police:Ruslan Ermilov2001-08-071-2/+5
| | | | | | | | | | Avoid using parenthesis enclosure macros (.Pq and .Po/.Pc) with plain text. Not only this slows down the mdoc(7) processing significantly, but it also has an undesired (in this case) effect of disabling hyphenation within the entire enclosed block. Notes: svn path=/head/; revision=81251
* Remove whitespace at EOL.Dima Dorfman2001-07-151-2/+2
| | | | Notes: svn path=/head/; revision=79754
* mdoc(7) police: removed HISTORY info from the .Os call.Ruslan Ermilov2001-07-101-1/+1
| | | | Notes: svn path=/head/; revision=79531
* mdoc(7) police: split punctuation characters + misc fixes.Ruslan Ermilov2001-02-011-1/+1
| | | | Notes: svn path=/head/; revision=71895
* Use `Er' variable to define first column width in ERRORS section. It wasAlexey Zelkin2000-05-041-1/+1
| | | | | | | initially suggested by mdoc(7) style, but was broken over the years Notes: svn path=/head/; revision=59954
* Introduce ".Lb" macro to libc manpages.Alexey Zelkin2000-04-211-0/+2
| | | | | | | More libraries manpages updates following. Notes: svn path=/head/; revision=59460
* $Id$ -> $FreeBSD$Peter Wemm1999-08-281-1/+1
| | | | Notes: svn path=/head/; revision=50476
* Typo in previous commit.Ruslan Ermilov1999-06-181-2/+2
| | | | Notes: svn path=/head/; revision=48001
* Mention that pid 1 is not affected by kill(-1, SIGXXX) too.Ruslan Ermilov1999-06-181-3/+8
| | | | Notes: svn path=/head/; revision=47999
* Fixed missing const(s) or #include(s) in synopsis.Bruce Evans1997-04-111-1/+2
| | | | Notes: svn path=/head/; revision=24822
* Revert $FreeBSD$ to $Id$Peter Wemm1997-02-221-1/+1
| | | | Notes: svn path=/head/; revision=22993
* Sort cross references.Wolfram Schneider1997-01-201-1/+1
| | | | Notes: svn path=/head/; revision=21907
* Make the long-awaited change from $Id$ to $FreeBSD$Jordan K. Hubbard1997-01-141-1/+1
| | | | | | | | | | | This will make a number of things easier in the future, as well as (finally!) avoiding the Id-smashing problem which has plagued developers for so long. Boy, I'm glad we're not using sup anymore. This update would have been insane otherwise. Notes: svn path=/head/; revision=21673
* upgrade STANDARDS from POSIX 1003.1-88 to 1003.1-90 using .St macroWolfram Schneider1996-12-021-4/+3
| | | | | | | | | use ``is expected to conform to'' phrase, not ``conforms to'' Pointed out by: Bruce->NIST-PCTS Notes: svn path=/head/; revision=20097
* function appeared in Version 7 AT&T UNIXWolfram Schneider1996-08-291-0/+6
| | | | | | | Obtained from: ftp://netlib.att.com/netlib/att/cs/v7man/man2 Notes: svn path=/head/; revision=17906
* BSD 4.4 Lite Lib SourcesRodney W. Grimes1994-05-271-0/+131
Notes: svn path=/cvs2svn/branches/unlabeled-1.1.1/; revision=1573