summaryrefslogtreecommitdiffstats
path: root/lib/libc/sys
Commit message (Collapse)AuthorAgeFilesLines
* Use `Er' variable to define first column width in ERRORS section. It wasphantom2000-05-0453-54/+54
| | | | initially suggested by mdoc(7) style, but was broken over the years
* mdoc(7) cleanup:phantom2000-05-041-6/+5
| | | | | | | | | | | . use real function names as `.Nm' macro argument in NAME section. It allows them to appear in apropos(1) or whatis(1) output. . replace empty lines with `.Pp' macro. . replace hardcoded standard names with their `.St' macro equivalents. . sort cross references in SEE ALSO section
* Add missing man pages. Fix various compliance bugs, mostly having to do withjasone2000-05-021-0/+85
| | | | | | error return values. Implement pthread_mutexattr_gettype(). PR: docs/16537, docs/17538
* Fix typo. Use `.Fa' to denote a function argument.jkoshy2000-04-261-2/+4
| | | | | PR: docs/18214 Submitted by: Ben Smithurst <ben@scientia.demon.co.uk>
* Spell MAP_NOSYNC correctly.wollman2000-04-231-1/+1
| | | | Submitted by: allenc@verinet.com
* .Lb-ifywollman2000-04-231-0/+2
|
* Add shm_open(3) and shm_unlink(3). The documentation could use a goodwollman2000-04-221-0/+192
| | | | | bit of work (and is stylistically probably the worst manual page I've ever written).
* Introduce ".Lb" macro to libc manpages.phantom2000-04-21138-1/+277
| | | | More libraries manpages updates following.
* Document EWOULDBLOCK as a possible errno return value.archie2000-04-091-0/+7
|
* Fixed wrong arg type in synopsis.bde2000-03-231-1/+1
|
* Add a man page for aio_waitcomplete(). Update the aio_cancel() man page tojasone2000-03-213-19/+179
| | | | | | reflect the fact that aio_cancel() works now. Submitted by: Christopher Sedore <cmsedore@maxwell.syr.edu>
* Remove more single-space hard sentence breaks.sheldonh2000-03-021-2/+4
|
* Remove single-space hard sentence breaks. These degrade the qualitysheldonh2000-03-0219-44/+88
| | | | | of the typeset output, tend to make diffs harder to read and provide bad examples for new-comers to mdoc.
* Add MAP_NOCORE to mmap(2), and MADV_NOCORE and MADV_CORE to madvise(2).ps2000-02-282-0/+8
| | | | | | | | | | | | This This feature allows you to specify if mmap'd data is included in an application's corefile. Change the type of eflags in struct vm_map_entry from u_char to vm_eflags_t (an unsigned int). Reviewed by: dillon,jdp,alfred Approved by: jkh
* Fix null-pointer dereference crash when the system is intentionallydillon2000-02-161-1/+2
| | | | | | | | | | | | | | | | run out of KVM through a mmap()/fork() bomb that allocates hundreds of thousands of vm_map_entry structures. Add panic to make null-pointer dereference crash a little more verbose. Add a new sysctl, vm.max_proc_mmap, which specifies the maximum number of mmap()'d spaces (discrete vm_map_entry's in the process). The value defaults to around 9000 for a 128MB machine. The test is scaled for the number of processes sharing a vmspace (aka linux threads). Setting the value to 0 disables the feature. PR: kern/16573 Approved by: jkh
* Replace `.Os BSD' which caused a troff error with `.Bx' which alsochris2000-02-141-1/+1
| | | | happens to be the correct macro to use in this situation.
* Document the support in the kernel for hardware debug registers on theobrien2000-02-121-1/+20
| | | | | | ix86 platform which allows for hardware watchpoints, etc... Submitted by: Brian Dean <brdean@unx.sas.com>
* We _do_ support MS_ASYNCguido2000-01-241-1/+1
| | | | Reviewed by: Matthew Dillon <dillon@apollo.backplane.com>
* Clarify that we don't offer hard realtime.alfred2000-01-241-3/+8
| | | | Split timeval options into 3 paragraphs, it's easier on my eyes.
* Add HISTORY.sheldonh2000-01-181-0/+2
| | | | Submitted by: obrien
* Fixed missing backslash in previous commit. Adding setresuid.2 has takenbde2000-01-181-1/+1
| | | | 4 commits and 2 world breakages so far.
* Fix line too long style bug in the previous commit (which, by thesheldonh2000-01-181-2/+2
| | | | way, unbroke world).
* add setresuid.2ache2000-01-181-1/+1
|
* Add manual pages for the newly added setres[ug]id system calls.sheldonh2000-01-172-0/+80
|
* Sync contents of struct nfsd_svrargskris2000-01-091-2/+2
|
* Fixed wrong #include in synopsis.bde1999-12-231-2/+2
|
* Fixed missing `const' in synopsis.bde1999-12-231-1/+1
|
* Fixed missing installation of a link to getlogin_r.3. This is the firstbde1999-12-231-0/+1
| | | | | example of section 2 and section 3 interfaces sharing a man page. It's probably a bad example.
* Fix a typo which I cannot believe I missed after rereading this textasmodai1999-12-211-1/+1
| | | | | | about 6-7 times prior to commit. Reported by: sheldonh
* Properly manify this manpage.asmodai1999-12-211-5/+5
| | | | | | | | Fix some spelling mistakes and typo's inspired by Nicholas' initial PR submission. PR: docs/15597 Submitted by: Nicholas Esborn <nick@flatlan.net>
* Document SA_SIGINFOcracauer1999-12-151-25/+90
| | | | Reviewed by: Sheldon Hearn <sheldonh@uunet.co.za>
* Add MAP_NOSYNC feature to mmap(), and MADV_NOSYNC and MADV_AUTOSYNC todillon1999-12-122-0/+56
| | | | | | | | | | | | | | | | | madvise(). This feature prevents the update daemon from gratuitously flushing dirty pages associated with a mapped file-backed region of memory. The system pager will still page the memory as necessary and the VM system will still be fully coherent with the filesystem. Modifications made by other means to the same area of memory, for example by write(), are unaffected. The feature works on a page-granularity basis. MAP_NOSYNC allows one to use mmap() to share memory between processes without incuring any significant filesystem overhead, putting it in the same performance category as SysV Shared memory and anonymous memory. Reviewed by: julian, alc, dg
* Add reference to netgraph(4) in the 'see also' section.archie1999-12-061-0/+1
|
* Add RLIMIT_SBSIZE here, too.green1999-12-031-0/+4
|
* Document the getlogin_r function.wes1999-11-281-2/+22
|
* General clean-up of socket.h and associated sources to synchronise upphk1999-11-249-21/+48
| | | | | | | | | | | | with NetBSD and the Single Unix Specification v2. This updates some structures with other, almost equivalent types and effort is under way to get the whole more consistent. Also removes a double definition of INET6 and some other clean-ups. Reviewed by: green, bde, phk Some part obtained from: NetBSD, SUSv2 specification
* Properly document what ENOENT really means for kldfind(2).chris1999-11-141-3/+1
|
* Document that bind(2) can fail with EAGAIN.nik1999-11-011-0/+3
| | | | | | PR: docs/14173 docs/14181 Submitted by: Charles Randall <crandall@matchlogic.com> Submitted by: Kelly Yancey <kbyanc@posi.net>
* Correct the description of the timeout argument. I've examinedwes1999-10-091-0/+10
| | | | | | | | the code, which seems to implement the POSIX requirements, and have described the behavior here. Basically, it behaves the same as select(2). Noticed by: John Polstra
* Fixed a typo (well, format-o) in yesterday's edits.wes1999-09-211-2/+3
| | | | Spotted by: John Polstra <jdp@polstra.com> (again)
* Fixed the description of when and why aio_suspend returns.wes1999-09-201-11/+15
| | | | | | | Also spelled out the return values and conditions a little better. Noticed by: John Polstra <jdp@polstra.com>
* Add a version number field to the jail(2) argument so that future changesphk1999-09-191-3/+14
| | | | can be handled intelligently.
* Add FreeBSD history in 'HISTORY'alfred1999-09-111-1/+4
| | | | Pointed out by: obrien
* Fixed disordering in previous commit.bde1999-09-111-1/+1
|
* Document fhopen, fhstat, and fhstatfs syscalls.alfred1999-09-112-1/+137
| | | | Obtained from: NetBSD
* sync with src/sys/sys/mount.halfred1999-09-101-1/+2
|
* Add aio_{cancel,error,return,suspend,write} into the mix.billf1999-09-091-1/+3
| | | | | Submitted by: Dan Nelson <dnelson@emsphone.com> Forgotten by: mpp
* Some style and "look" fixesphantom1999-09-059-12/+27
| | | | Reviewed by: mpp
* Name Description (.Nd macro) added.phantom1999-09-051-6/+7
| | | | | | | | Style and punctuation errors fixes. ERRORS section included to RETURN VALUES because it's describing return values instead of errors and their handling. Reviewed by: mpp
* mdoc(7) style fix.phantom1999-09-051-2/+4
| | | | | | Correct RB_* values list bounds. Reviewed by: mpp
OpenPOWER on IntegriCloud