summaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* mdoc(7) police: sort SEE ALSO xrefs (sort -b -f +2 -3 +1 -2).ru2001-07-0631-50/+50
|
* mdoc(7) police: fixed formatting.ru2001-07-061-41/+64
|
* mdoc(7) police: fixed markup and typo.ru2001-07-051-16/+16
|
* Use the .Rv macro to describe the return value.yar2001-07-041-6/+1
| | | | | Suggested by: ru MFC after: 5 days
* mdoc(7) police: added missing newline after .Dv macro call,ru2001-07-041-8/+12
| | | | removed hard sentence breaks.
* mdoc(7) police: use .Rv -std.ru2001-07-041-7/+2
|
* mdoc(7) police: mark NULL with .Dv.ru2001-07-041-8/+24
|
* mdoc(7) police: fixed/simplified formatting.ru2001-07-041-130/+81
|
* mdoc(7) police: sort xrefs.ru2001-07-041-2/+2
|
* mdoc(7) police: print some example text with literal font.ru2001-07-041-1/+4
|
* mdoc(7) police: fixed bugs in rev. 1.19, split section headers names.ru2001-07-041-5/+5
|
* mdoc(7) police: compact VFCF_ list.ru2001-07-041-1/+2
|
* Make sure you don't have a file descriptor leak for the 'real'mjacob2001-07-041-1/+5
| | | | | | | | | | underlying CAM device. This needs to be checked not only in the open routine, but the device->fd has to be initialized as well. PR: 28688 Submitted (partially) by: T. William Wells <bill@twwells.com> MFC after: 2 weeks
* Describe the condition when EACCES is returned more explicitly.dd2001-07-041-1/+3
| | | | Submitted by: bde
* mdoc(7) police: fix spacing issuedd2001-07-031-4/+4
| | | | Submitted by: ru
* First, fix a leftover of the cut'n'paste from the kld* pages:yar2001-07-031-2/+6
| | | | | | | | | change the name of the page (.Nm) from "kldstat" to "modstat". Second, don't claim that modstat(2) always returns 0. Actually, it behaves as most syscalls do - returns 0 on success, or -1 on failure. MFC after: 5 days
* EACCES may be returned if write permission was denied as well.dd2001-07-021-1/+1
| | | | | PR: 28553 Submitted by: Ronald F. Guilmette <rfg@monkeys.com>
* Reset errno so that subsequent TFTP requests don't fail after themikeh2001-06-301-0/+2
| | | | | | | first failure. PR: misc/25502 MFC after: 2 weeks
* Clear the in thread scheduler flag after jumping to the start ofdeischen2001-06-293-0/+18
| | | | | | a signal handler from the scheduler. MFC after: 1 week
* Fix a one-byte overrun.dd2001-06-282-2/+2
| | | | | | PR: 28472 Submitted by: David Xu <davidx@viasoft.com.cn> Obtained from: OpenBSD
* getcwd(3) is defined by POSIX, not ISO C.dd2001-06-281-1/+1
| | | | Approved by: bde
* Document the existing vfc_flags.dd2001-06-282-3/+20
| | | | | PR: 25837 Submitted by: Tony Finch <dot@dotat.at>
* event.h -> sys/event.hdd2001-06-271-1/+1
| | | | Submitted by: David Hill <david@phobia.ms>
* Fixed the brain-o in rev. 1.10: the logic check was reversed.ru2001-06-271-1/+1
| | | | Reported by: Bernd Fuerwitt <bf@fuerwitt.de>
* Fix a race condition in pthread_join(). All of the following must occurjasone2001-06-279-144/+159
| | | | | | | | | | | | atomically: 1) Search _thread_list for the thread to join. 2) Search _dead_list for the thread to join. 3) Set the running thread as the joiner. While we're at it, fix a race in the case where multiple threads try to join on the same thread. POSIX says that the behavior of multiple joiners is undefined, but the fix is cheap as a result of the other fix.
* Typo fix: requires -> reacquiresgshapiro2001-06-272-2/+2
| | | | | Submitted by: Murray S. Kucherawy <msk@sendmail.com> MFC after: 3 days
* Remove an extra word "fo" in the sentence "there is no process whosechris2001-06-271-1/+1
| | | | | | | process ID equals fo pid". PR: 28436 Submitted by: Gregory Bond <gnb@itga.com.au>
* Return "" if reallocf() failsache2001-06-251-1/+2
|
* Describe success return valueache2001-06-251-0/+6
|
* Add transition period hack allowing old locale names return proper codeset tooache2001-06-251-4/+31
|
* Add RETURN VALUES and ERRORS sections.dd2001-06-252-4/+22
|
* Minor cleanup: sort includes, fix name.dd2001-06-251-6/+5
|
* Add a link to extattr.2 (from extattr_get_file.2). The other namesdd2001-06-241-1/+2
| | | | | are too specific and too long, and extattr.2 makes a nice point of reference for "extattr-related syscalls".
* Add a manual page for extattr_string_to_namespace anddd2001-06-243-0/+185
| | | | | | extattr_namespace_to_string. Reviewed by: rwatson
* mdoc(7) police: the BUGS section should go after HISTORY and AUTHORS.dd2001-06-241-6/+6
|
* The fact that phk wrote this is not a bug!dd2001-06-241-5/+2
|
* Reword a sentence to make it proper English.dd2001-06-241-1/+1
|
* Remove duplicate words.dd2001-06-249-10/+10
|
* Add a new clnt_control() request `CLSET_CONNECT' that controlsiedowse2001-06-232-4/+27
| | | | | | | | | | whether or not connect(2) is used for UDP client sockets. The default is not to connect(), so existing clients will see no change in behaviour. The use of connect(2) for UDP clients has a number of advantages: only replies from the intended address are received, and ICMP errors pertaining to the connection are reported back to the application.
* Document "normalizing" behavior of mktime(3).ru2001-06-231-1/+12
| | | | | | PR: bin/28313 Reviewed by: bde, wollman MFC after: 1 week
* Bring in fix from rev 1.32 that got lost during the conversion to kqueue.jlemon2001-06-231-8/+19
| | | | | | | | This prevents an indefinte timeout in case the kevent call is interrupted for some reason. PR: 26665 MFC in: 2 weeks
* Fix long lines.obrien2001-06-211-4/+4
|
* Add libbz2 to provide Bzip2 capabilities to the system.obrien2001-06-212-1/+21
|
* Fix a grammar bogon.dd2001-06-201-1/+1
|
* Fix spelling of `errno' and add cross-references.wollman2001-06-181-6/+13
|
* Document _SC_IOV_MAX. Add cross-references to pathconf(2), confstr(3), andwollman2001-06-181-3/+16
| | | | | getconf(1). This document still needs to be sorted and to have other missing parameters described.
* After one too many PRs on the subject, bite the bullet and define IOV_MAXwollman2001-06-181-0/+12
| | | | | | | | and its associated constants. Implement _SC_IOV_MAX in the usual way. Be a bit sloppy about the namespace question; this should get cleared up in time for 5.0. MFC after: 1 month
* If the username we are trying to look up in the db files won't fit intodwmalone2001-06-181-1/+3
| | | | | | | | the buffer then act like it doesn't exist. The buffer is always big enough for any valid username. PR: 27860 Reviewed by: nectar
* (cantwrite): do not allocate memory for a NULL stringassar2001-06-181-1/+2
| | | | | | | | PR: misc/26044 MFC after: 1 week Submitted by: bde
* revert freeing of memory that gets allocated when str == NULLassar2001-06-184-8/+0
| | | | | | (this will be fixed in a better way) PR: misc/26044
OpenPOWER on IntegriCloud