Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | o mention why poll(2) is often more effecient than select(2) | 2003-09-23 | 1 | -26/+57 | |
| | | | | | | | o add a bit on priority from POSIX o provide a simple example o our poll(2) does not return EAGAIN (we block on memory allocation failure) o correct some comments about the flags now that we support more of them | ||||
* | o Use proper mdoc macros for function macros and defines | 2003-09-08 | 1 | -70/+100 | |
| | | | | | | | | | o Update flags values based on POSIX-2001 o Remove inaccuracies o Document what we don't support in BUGS o More specific HISTORY info o Update SEE ALSO OK jmc@ and deraadt@ | ||||
* | spacing; | 2003-09-05 | 1 | -1/+2 | |
| | |||||
* | typo. | 2003-09-04 | 1 | -2/+2 | |
| | | | | ok jmc@ | ||||
* | put escapes in the right place; | 2003-09-04 | 1 | -2/+2 | |
| | | | | | | (i.e. stuff I got wrong the first time, or missed) this includes some .Cd's with missing quotes and .Nm abuse in man4; | ||||
* | document what happens when pollfd.fd is -1 | 2003-08-19 | 1 | -1/+10 | |
| | |||||
* | implement CLOCK_MONOTONIC from NetBSD; ok marc@ | 2003-08-11 | 1 | -3/+5 | |
| | |||||
* | Use WCONTINUED as width for list of wait options; jmc@ | 2003-08-03 | 1 | -2/+2 | |
| | |||||
* | Implement the WCONTINUED flag to the wait(2) family of syscalls and the | 2003-08-03 | 1 | -9/+20 | |
| | | | | | | | | | associated WIFCONTINUED macro as per 1003.1-2001. Adapted from FreeBSD. A minor amount of trickiness is involved here. The value for WCONTINUED is chosen in such a way that _WSTATUS(_WCONTINUED) == _WSTOPPED and the WIFSTOPPED macro has been modified such that WIFSTOPPED(_WCONTINUED) != _WSTOPPED. This means we don't need to add an extra check to the WIFSIGNALED and WIFSTOPPED macros. deraadt@ OK. | ||||
* | missing #include | 2003-07-30 | 1 | -1/+2 | |
| | | | | Claudio Jeker, PR3382 | ||||
* | add a spot of .Fa to variable names | 2003-07-29 | 1 | -2/+5 | |
| | | | | jmc@ ok | ||||
* | change the description of [EINVAL] for mount() and unmount(); | 2003-07-25 | 1 | -3/+3 | |
| | | | | | | discussed with tedu. reported by Hannah Schroeter on misc@ | ||||
* | add missing includes | 2003-07-18 | 1 | -2/+5 | |
| | | | | ok tedu@ | ||||
* | .Ql Pa -> .Sq Pa where literal makes no sense; | 2003-07-15 | 1 | -7/+7 | |
| | |||||
* | open() is not ANSI; | 2003-07-09 | 1 | -2/+1 | |
| | | | | pointed out by Pedro Bastos; | ||||
* | Fix the types in struct dirent and document d_type (description | 2003-07-04 | 1 | -8/+26 | |
| | | | | taken from NetBSD). | ||||
* | the arrays are null terminated, but the strings are only nul terminated. | 2003-07-02 | 1 | -3/+3 | |
| | |||||
* | 3 missing header files | 2003-06-22 | 1 | -1/+4 | |
| | |||||
* | document mount_ntfs and better formatting; | 2003-06-21 | 1 | -23/+42 | |
| | | | | ok tedu@ | ||||
* | - rewrite of the plan9 sections of rfork(2) and new (c) | 2003-06-18 | 1 | -77/+111 | |
| | | | | | | | - updated ERRORS and RETURN VALUES this had to be rewritten because of licensing issues with plan9. ok deraadt@ | ||||
* | ansification; checked by pval | 2003-06-11 | 14 | -76/+33 | |
| | |||||
* | sync man page with sys/socket.h; | 2003-06-11 | 1 | -4/+4 | |
| | | | | | from a NetBSD bug report (MAEKAWA Masahide); ok pjanzen@ | ||||
* | o make mount(2) return EROFS, not EPERM if ffs is dirty | 2003-06-10 | 1 | -5/+11 | |
| | | | | | | o document EROFS in man page (2 possible causes) o recognize EROFS in mount_ffs and try to give a reasonable error message deraadt@ OK | ||||
* | Mention that you can get EPERM when trying to mount an unclean filesystem. | 2003-06-09 | 1 | -1/+5 | |
| | |||||
* | Remove the advertising clause in the UCB license which Berkeley | 2003-06-02 | 114 | -688/+232 | |
| | | | | rescinded 22 July 1999. Proofed by myself and Theo. | ||||
* | section reorder; | 2003-06-02 | 7 | -76/+81 | |
| | |||||
* | - section reorder | 2003-06-01 | 10 | -76/+76 | |
| | | | | - macro cleanup | ||||
* | - section reorder | 2003-06-01 | 10 | -68/+68 | |
| | | | | | - merge COMPATIBILITY - kill whitespace at EOL | ||||
* | - section reorder | 2003-06-01 | 10 | -50/+50 | |
| | | | | | | - merge COMPATIBILITY - kill whitespace at EOL - tidy up macros | ||||
* | Document ENXIO error condicion when the named file is a FIFO and | 2003-05-20 | 1 | -1/+7 | |
| | | | | flags include O_NONBLOCK|O_WRONLY. Closes PR 3265. | ||||
* | consistent non-capitalization of words not beginning sentences | 2003-05-20 | 2 | -6/+6 | |
| | |||||
* | Explicitly state that priority values outside the range -20 to 20 are | 2003-05-19 | 1 | -3/+4 | |
| | | | | truncated to the appropriate limit. | ||||
* | typo from deraadt@ | 2003-05-16 | 1 | -4/+4 | |
| | |||||
* | cpu -> CPU | 2003-05-12 | 2 | -6/+6 | |
| | |||||
* | Do not let userland access the swapon system call anymore (nothing uses it | 2003-05-10 | 1 | -2/+2 | |
| | | | | | anyway). ok deraadt@ weingart@ | ||||
* | a extended -> an extended; | 2003-04-30 | 1 | -2/+2 | |
| | |||||
* | Change mquery() function call signature to be the same a mmap(). It | 2003-04-28 | 1 | -4/+5 | |
| | | | | | | | | needs the prot/flags info and passing the addresses via arg/return allows it to be traced via ktrace better than an in/out paramter. This adds a new mquery syscall and renames the old one to omquery. New kernel _MUST_ be built, booted, and 'make includes' before building ld.so with this change. | ||||
* | Remove note about POLLMSG. not used and not provided. ok millert@ | 2003-04-25 | 1 | -4/+1 | |
| | |||||
* | backout mquery change, something broke when not combined with a different diff. | 2003-04-25 | 1 | -5/+4 | |
| | |||||
* | Document changes to mquery(2) function signature change, now the same as mmap(2) | 2003-04-25 | 1 | -15/+17 | |
| | |||||
* | change mquery() function call signature to be the same a mmap(). It | 2003-04-25 | 1 | -4/+5 | |
| | | | | | | | | needs the prot/flags info and passing the addresses via arg/return allows it to be traced via ktrace better than an in/out paramter. This adds a new mquery syscall and renames the old one to omquery. New kernel _MUST_ be built and installed before building ld.so with this change. ok millert@ tedu@ | ||||
* | Close .Bl | 2003-04-21 | 1 | -1/+2 | |
| | | | | millert@ | ||||
* | Fix format odditiy in 'ERRORS' section, formats like mmap(2) manpage now. | 2003-04-18 | 1 | -2/+2 | |
| | |||||
* | Document that mquery() returns EINVAL if request memory was not available | 2003-04-18 | 1 | -5/+4 | |
| | | | | when MAP_FIXED is specified. ok tedu@ | ||||
* | fix typo; Julien Bordet | 2003-04-17 | 1 | -2/+2 | |
| | |||||
* | There are two related changes. | 2003-04-14 | 3 | -4/+148 | |
| | | | | | | | | | | | | The first one is an mquery(2) syscall. It's for asking the VM system about where to map things. It will be used by ld.so, read the man page for details. The second change is related and is a centralization of uvm_map hint that all callers of uvm_map calculated. This will allow us to adjust this hint on architectures that have segments for non-exec mappings. deraadt@ drahn@ ok. | ||||
* | underfined -> undefined; | 2003-04-12 | 1 | -2/+2 | |
| | | | | from Fabio Olive Leite; | ||||
* | exceeds -> exceedes; | 2003-04-03 | 1 | -2/+2 | |
| | | | | from Pedro Bastos (thanks) | ||||
* | fifo -> FIFO | 2003-04-02 | 3 | -18/+18 | |
| | | | | ok millert@ | ||||
* | nfs -> NFS | 2003-04-02 | 1 | -4/+4 | |
| |