Age | Commit message (Collapse) | Author | |
---|---|---|---|
1999-12-31 | f_bavail is signed (sync with sys/mount.h) | Todd C. Miller | |
1999-12-14 | Install swapctl.2, not swapon.2. swapon.2 should probably go away. | Todd C. Miller | |
1999-12-04 | Formatting fixes, suggested by ericj@ | Aaron Campbell | |
1999-11-14 | EFAULT does not happen for all files; posix 1003.1, line 216 | Theo 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-05 | specifed -> specified | Aaron Campbell | |
1999-09-27 | Formatting and grammar. | Aaron Campbell | |
1999-09-26 | .Nm -> .Fn | Marc Espie | |
1999-09-26 | Proper 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-25 | grammar | Paul Janzen | |
1999-09-23 | Typo fixes. | Alex Feldman | |
1999-09-22 | Some misc fixes, one from fgsch@ | Aaron Campbell | |
1999-08-31 | Consistify naming of RETURN VALUES section. | Aaron Campbell | |
1999-08-15 | more poll | Theo de Raadt | |
1999-08-13 | Missing comma | Todd C. Miller | |
1999-07-31 | document cdev/bdev semantic change | Theo de Raadt | |
1999-07-21 | Remove PARAMETERS section. Different bad. Kjell bad. | Kjell Wooding | |
Add references to sockaddr_storage. | |||
1999-07-21 | Updated man pages to be useful. Include description of typical uses. | Kjell Wooding | |
1999-07-09 | - remove all trailing whitespace | Aaron 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-07 | I don't see how revoke can return EINVAL. | Artur Grabowski | |
1999-07-07 | revoke(2) works on more than just char and block devices | Artur Grabowski | |
1999-07-07 | The 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-06 | these can also return ENFILE | Theo de Raadt | |
1999-07-06 | Update to reflect reality. | Jason Downs | |
1999-07-05 | use .Li to refer to data types | Aaron Campbell | |
1999-07-04 | trash some old leftover macros and replace them with -mdoc macros | Aaron Campbell | |
1999-07-02 | remove redundant .Pp macros | Aaron Campbell | |
1999-07-02 | document more | Theo de Raadt | |
1999-07-02 | .Dd should not be given abbreviated month names | Aaron Campbell | |
1999-07-02 | remove extra comma from .Dd arguments: "Month ##, ####" is the correct format, | Aaron Campbell | |
not "Month, ##, ####" | |||
1999-06-29 | add #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.org | Aaron 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-29 | fix phasing | Theo de Raadt | |
1999-06-29 | accept(2) will set errno to EINVAL if the socket is not listen(2)'ing | Aaron Campbell | |
1999-06-25 | add missing reference to setsockopt(2) in "SEE ALSO" section; tron@netbsd.org | Aaron Campbell | |
1999-06-16 | More xref sorting under SEE ALSO. | Alex Feldman | |
1999-06-07 | replacement pipe() system call; copies data into place inside kernel, so | Theo de Raadt | |
that EFAULT return value is possible | |||
1999-06-06 | adjtime(2) did not return EFAULT for bad olddelta ptr; ↵ | Theo de Raadt | |
darrenr@merlin.reed.wattle.id.au | |||
1999-06-06 | Grammatical, spelling, and format fixes | Paul Janzen | |
1999-06-05 | use .Tn instead of .Em for logical/bitwise OR + AND | Aaron Campbell | |
1999-06-05 | capitalize the acronym ID | Aaron Campbell | |
1999-06-01 | getfsstat/getmntinfo do not require inclusion of <sys/ucred.h> | Todd C. Miller | |
1999-05-31 | New 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-30 | grammar and punctuation | Paul Janzen | |
1999-05-28 | sync with ioctl() prototype, and the third argument more clearly | Aaron Campbell | |
1999-05-27 | more missing .El macros filled in | Aaron Campbell | |
1999-05-27 | add missing .El macros (which properly terminate .Bl macro lists) | Aaron Campbell | |
1999-05-27 | or'ing -> OR'ing | Aaron Campbell | |