summaryrefslogtreecommitdiff
path: root/lib/libc/sys
AgeCommit message (Collapse)Author
1999-12-31f_bavail is signed (sync with sys/mount.h)Todd C. Miller
1999-12-14Install swapctl.2, not swapon.2. swapon.2 should probably go away.Todd C. Miller
1999-12-04Formatting fixes, suggested by ericj@Aaron Campbell
1999-11-14EFAULT does not happen for all files; posix 1003.1, line 216Theo de Raadt
1999-10-07- Xr acct(2) from accton(8) and vice-versa.Aaron Campbell
- Add a FILES section to accton(8) indicating the default accounting file. - From pjanzen@
1999-10-05specifed -> specifiedAaron Campbell
1999-09-27Formatting and grammar.Aaron Campbell
1999-09-26.Nm -> .FnMarc Espie
1999-09-26Proper coding idioms.Marc Espie
[yes, there ARE some systems where read and write >SSIZE_MAX work, and physicists use those features to write huge files in one swoop]
1999-09-26`may return following error' => `may return the following error'Marc Espie
`may return following errors' => `may return one of the following errors'
1999-09-25grammarPaul Janzen
1999-09-23Typo fixes.Alex Feldman
1999-09-22Some misc fixes, one from fgsch@Aaron Campbell
1999-08-31Consistify naming of RETURN VALUES section.Aaron Campbell
1999-08-15more pollTheo de Raadt
1999-08-13Missing commaTodd C. Miller
1999-07-31document cdev/bdev semantic changeTheo de Raadt
1999-07-21Remove PARAMETERS section. Different bad. Kjell bad.Kjell Wooding
Add references to sockaddr_storage.
1999-07-21Updated man pages to be useful. Include description of typical uses.Kjell Wooding
1999-07-09- remove all trailing whitespaceAaron Campbell
* except when it is escaped with a `\' at the end of the line - fix remaining .Nm usage as well - this is from a patch I received from kwesterback@home.com, who has been working on some scripts for fixing formatting errors in mdoc'd man pages Ok, so there could be a cost/benefit debate with this commit, but since I have the patch we might as well commit it...
1999-07-07I don't see how revoke can return EINVAL.Artur Grabowski
1999-07-07revoke(2) works on more than just char and block devicesArtur Grabowski
1999-07-07The proper order of the ``introductory'' macros in a man page is .Dd/.Dt/.Os.Aaron Campbell
Out of the approximately 1450 man pages, only about 90 of them were wrong. Thanks to kwesterback@home.com for coming up with a script and patch to repair this. The patch also inserted a .Os macro in the few man pages that were missing one.
1999-07-06these can also return ENFILETheo de Raadt
1999-07-06Update to reflect reality.Jason Downs
1999-07-05use .Li to refer to data typesAaron Campbell
1999-07-04trash some old leftover macros and replace them with -mdoc macrosAaron Campbell
1999-07-02remove redundant .Pp macrosAaron Campbell
1999-07-02document moreTheo de Raadt
1999-07-02.Dd should not be given abbreviated month namesAaron Campbell
1999-07-02remove extra comma from .Dd arguments: "Month ##, ####" is the correct format,Aaron Campbell
not "Month, ##, ####"
1999-06-29add #include for <vm/vm_inherit.h>Aaron Campbell
1999-06-29.Fa int -> .Li int (should use literal macro to refer to data types)Aaron Campbell
1999-06-29- change references to nil to null; tschroed@acm.orgAaron Campbell
- remove trailing spaces from end of lines - add some .Dv - change -1 to \-1, so `-' is taken as a negative sign - other misc formatting fixes
1999-06-29fix phasingTheo de Raadt
1999-06-29accept(2) will set errno to EINVAL if the socket is not listen(2)'ingAaron Campbell
1999-06-25add missing reference to setsockopt(2) in "SEE ALSO" section; tron@netbsd.orgAaron Campbell
1999-06-16More xref sorting under SEE ALSO.Alex Feldman
1999-06-07replacement pipe() system call; copies data into place inside kernel, soTheo de Raadt
that EFAULT return value is possible
1999-06-06adjtime(2) did not return EFAULT for bad olddelta ptr; ↵Theo de Raadt
darrenr@merlin.reed.wattle.id.au
1999-06-06Grammatical, spelling, and format fixesPaul Janzen
1999-06-05use .Tn instead of .Em for logical/bitwise OR + ANDAaron Campbell
1999-06-05capitalize the acronym IDAaron Campbell
1999-06-01getfsstat/getmntinfo do not require inclusion of <sys/ucred.h>Todd C. Miller
1999-05-31New struct statfs with mount options. NOTE: this replaces statfs(2),Todd C. Miller
fstatfs(2), and getfsstat(2) so you will need to build a new kernel before doing a "make build" or you will get "unimplemented syscall" errors. The new struct statfs has the following featuires: o Has a u_int32_t flags field--now softdep can have a real flag. o Uses u_int32_t instead of longs (nicer on the alpha). Note: the man page used to lie about setting invalid/unused fields to -1. SunOS does that but our code never has. o Gets rid of f_type completely. It hasn't been used since NetBSD 0.9 and having it there but always 0 is confusing. It is conceivable that this may cause some old code to not compile but that is better than silently breaking. o Adds a mount_info union that contains the FSTYPE_args struct. This means that "mount" can now tell you all the options a filesystem was mounted with. This is especially nice for NFS. Other changes: o The linux statfs emulation didn't convert between BSD fs names and linux f_type numbers. Now it does, since the BSD f_type number is useless to linux apps (and has been removed anyway) o FreeBSD's struct statfs is different from our (both old and new) and thus needs conversion. Previously, the OpenBSD syscalls were used without any real translation. o mount(8) will now show extra info when invoked with no arguments. However, to see *everything* you need to use the -v (verbose) flag.
1999-05-30grammar and punctuationPaul Janzen
1999-05-28sync with ioctl() prototype, and the third argument more clearlyAaron Campbell
1999-05-27more missing .El macros filled inAaron Campbell
1999-05-27add missing .El macros (which properly terminate .Bl macro lists)Aaron Campbell
1999-05-27or'ing -> OR'ingAaron Campbell