Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | mdoc(7) police: sort SEE ALSO xrefs (sort -b -f +2 -3 +1 -2). | ru | 2001-07-06 | 9 | -13/+13 |
| | |||||
* | Use the .Rv macro to describe the return value. | yar | 2001-07-04 | 1 | -6/+1 |
| | | | | | Suggested by: ru MFC after: 5 days | ||||
* | mdoc(7) police: added missing newline after .Dv macro call, | ru | 2001-07-04 | 1 | -8/+12 |
| | | | | removed hard sentence breaks. | ||||
* | mdoc(7) police: use .Rv -std. | ru | 2001-07-04 | 1 | -7/+2 |
| | |||||
* | Describe the condition when EACCES is returned more explicitly. | dd | 2001-07-04 | 1 | -1/+3 |
| | | | | Submitted by: bde | ||||
* | First, fix a leftover of the cut'n'paste from the kld* pages: | yar | 2001-07-03 | 1 | -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. | dd | 2001-07-02 | 1 | -1/+1 |
| | | | | | PR: 28553 Submitted by: Ronald F. Guilmette <rfg@monkeys.com> | ||||
* | event.h -> sys/event.h | dd | 2001-06-27 | 1 | -1/+1 |
| | | | | Submitted by: David Hill <david@phobia.ms> | ||||
* | Remove an extra word "fo" in the sentence "there is no process whose | chris | 2001-06-27 | 1 | -1/+1 |
| | | | | | | | process ID equals fo pid". PR: 28436 Submitted by: Gregory Bond <gnb@itga.com.au> | ||||
* | Minor cleanup: sort includes, fix name. | dd | 2001-06-25 | 1 | -6/+5 |
| | |||||
* | Add a link to extattr.2 (from extattr_get_file.2). The other names | dd | 2001-06-24 | 1 | -1/+2 |
| | | | | | are too specific and too long, and extattr.2 makes a nice point of reference for "extattr-related syscalls". | ||||
* | Remove duplicate words. | dd | 2001-06-24 | 1 | -1/+1 |
| | |||||
* | Fix small bogon. | jlemon | 2001-06-11 | 1 | -1/+1 |
| | | | | Submitted by: Anton Berezin <tobez@tobez.org> | ||||
* | I neglected to notice that the change text had already been added in a | imp | 2001-06-05 | 1 | -3/+0 |
| | | | | | | different place. Back out what I added since the other text is better. Noticed by: nectar | ||||
* | Fix cross-references: | sobomax | 2001-06-05 | 1 | -1/+1 |
| | | | | | | | | ipnat.8 --> ipnat.1 environ.5 --> environ.7 isssetugid.2 --> issetugid.2 MFC after: 1 week | ||||
* | Document what happens when the real id is changed. | imp | 2001-06-05 | 2 | -0/+6 |
| | | | | | I may have obtained this from NetBSD, but I don't recall. I do know that I checked FreeBSD's implementation to make sure that it matched what I wrote. | ||||
* | Remove vestiges of MFS. | ru | 2001-06-01 | 2 | -25/+3 |
| | |||||
* | This patch implements O_DIRECT about 80% of the way. It takes a patchset | dillon | 2001-05-24 | 2 | -0/+12 |
| | | | | | | | | | | | | | | | | Tor created a while ago, removes the raw I/O piece (that has cache coherency problems), and adds a buffer cache / VM freeing piece. Essentially this patch causes O_DIRECT I/O to not be left in the cache, but does not prevent it from going through the cache, hence the 80%. For the last 20% we need a method by which the I/O can be issued directly to buffer supplied by the user process and bypass the buffer cache entirely, but still maintain cache coherency. I also have the code working under -stable but the changes made to sys/file.h may not be MFCable, so an MFC is not on the table yet. Submitted by: tegge, dillon | ||||
* | Rename (after a repo-copy) some mount(8) programs: | ru | 2001-05-23 | 2 | -2/+2 |
| | | | | | | | | mount_fdesc -> mount_fdescfs mount_null -> mount_nullfs mount_portal -> mount_portalfs mount_umap -> mount_umapfs mount_union -> mount_unionfs | ||||
* | Document ECONNREFUSED. | archie | 2001-05-20 | 1 | -0/+4 |
| | | | | Submitted by: Richard Hodges <rh@matriplex.com> | ||||
* | mdoc(7) police: normalize .Nd. | ru | 2001-04-18 | 3 | -3/+3 |
| | |||||
* | mdoc(7) police: add missing .El call. | ru | 2001-04-16 | 1 | -0/+1 |
| | |||||
* | Grammar police: "its", not "it's", is the possessive form of "it". | dd | 2001-04-15 | 2 | -2/+2 |
| | |||||
* | Make links from setresuid.2 to getresgid.2 and getresuid.2. | dd | 2001-04-15 | 1 | -1/+1 |
| | |||||
* | Document getresgid and getresuid calls. | dd | 2001-04-15 | 1 | -2/+21 |
| | | | | Reviewed by: ru | ||||
* | Add ``RETURN VALUES'' and ``ERRORS'' sections since getpgid(2) can | dd | 2001-04-14 | 1 | -1/+18 |
| | | | | | | fail. Also fix a minor grammar nit (it's -> its). PR: 26520 | ||||
* | To be consistent, use the __weak_reference macro from <sys/cdefs.h> | deischen | 2001-04-10 | 1 | -1/+1 |
| | | | | | | | | instead of #pragma weak to create weak definitions. This macro is improperly named, though, since a weak definition is not the same thing as a weak reference. Suggested by: bde | ||||
* | Mention that locks are inherited across an exec. | dd | 2001-04-08 | 1 | -0/+6 |
| | | | | | PR: 24802 Submitted by: Kenneth Ingham <ingham@i-pi.com> | ||||
* | Install links to extattr_(get|set|delete)_fd.2 (from extattr_get_file.2). | dd | 2001-04-08 | 1 | -2/+5 |
| | |||||
* | Document the extattr_(get|set|delete)_fd calls, and add a note warning | dd | 2001-04-05 | 1 | -4/+52 |
| | | | | | | people that these calls are likely to change in the future. Reviewed by: rwatson | ||||
* | Hook the extattr_get_file.2 manual page into the build. Add MLINKS | dd | 2001-04-01 | 1 | -1/+3 |
| | | | | for extattr_set_file.2 and extattr_delete_file.2. | ||||
* | A manual page for the extattr_get_file, extattr_set_file, and | dd | 2001-04-01 | 1 | -0/+154 |
| | | | | | | | extattr_delete_file system calls. Reviewed by: rwatson, ru Approved by: nik | ||||
* | Catch up with a comment that changed in rev1.73 of mount.h | ben | 2001-03-29 | 1 | -1/+1 |
| | | | | | PR: 25836 Submitted by: Tony Finch <dot@dotat.at> | ||||
* | The f_syncreads and f_asyncreads entries are missing from the man page. | phk | 2001-03-28 | 1 | -3/+4 |
| | | | | | | | | This also tidies up the formatting a bit and omits all the padding entries. PR: 25834 Submitted by: Tony Finch <dot@dotat.at> | ||||
* | MAN[1-9] -> MAN. | ru | 2001-03-27 | 1 | -2/+2 |
| | |||||
* | Make it clear who can and can't set the UF_NODUMP, UF_OPAQUE, and | dd | 2001-03-19 | 1 | -4/+7 |
| | | | | | | | SF_ARCHIVED file flags. PR: 25227 Approved by: nik | ||||
* | Fix type-o | dillon | 2001-03-16 | 1 | -1/+1 |
| | | | | Submitted by: okazaki | ||||
* | Correct descriptions of SOCK_RDM and SOCK_SEQPACKET. | dd | 2001-03-16 | 1 | -2/+2 |
| | | | | | | PR: 25797 Submitted by: Yuko Sasaki <yuko@veltec.co.jp> Approved by: nik | ||||
* | Correct spelling of MNT_ASYNC. | dwmalone | 2001-03-15 | 1 | -2/+2 |
| | | | | | PR: 25835 Submitted by: Tony Finch <dot@dotat.at> | ||||
* | .St -p1003.1g -> .St -p1003.1g-2000. | ru | 2001-03-12 | 1 | -2/+2 |
| | |||||
* | This is the getsid() we are talking about, not setsid(). | ru | 2001-03-09 | 1 | -1/+1 |
| | | | | | PR: docs/25626 Submitted by: Yoshihiko Sarumaru <mistral@imasy.or.jp> | ||||
* | In soshutdown(), use SHUT_{RD,WR,RDWR} instead of FREAD and FWRITE. | ru | 2001-02-27 | 1 | -23/+30 |
| | | | | Also, return EINVAL if `how' is invalid, as required by POSIX spec. | ||||
* | /^\.St/ s/-iso9945-1/-p1003.1-96/ | ru | 2001-02-26 | 2 | -3/+3 |
| | |||||
* | ``.St -p1003.1b'' -> ``.St -p1003.1b-93''. | ru | 2001-02-26 | 1 | -1/+1 |
| | |||||
* | Document the EINTR error. | jasone | 2001-02-26 | 1 | -0/+2 |
| | |||||
* | Document various changes to kq: | jlemon | 2001-02-26 | 1 | -10/+44 |
| | | | | | | | - new EV_SET macro, - NOTE_LOWAT option for low water marks on read/write filters, - NOTE_REVOKE for filesystem unmounting (and revoke() calls) - improved API for EVFILT_AIO | ||||
* | Fix my ambiguous message about ECONNABORTED. | olgeni | 2001-02-25 | 1 | -1/+2 |
| | | | | Submitted by: Ian Dowse <iedowse@maths.tcd.ie> | ||||
* | Add ECONNABORTED to the ERRORS section. | olgeni | 2001-02-25 | 1 | -0/+2 |
| | |||||
* | List the SA_RESTART flag rather than burying it in another paragraph. | peter | 2001-02-14 | 1 | -0/+2 |
| | |||||
* | Add include <sys/time.h> because kevent uses struct timespec | guido | 2001-02-14 | 1 | -0/+1 |
| |