Bruce Evans
336ff946fc
Fixed #include(s) in the synopsis to actually declare the function(s) in the
...
synopsis.
1997-04-11 17:58:16 +00:00
Bruce Evans
d134e17633
Cleaned up synopsis:
...
- don't quote function names, since quoting them is unnecessary and
unusual and confuses my synopsis checker.
- include <sys/types.h> instead of <sys/param.h>. It is normal to
(have to) include <sys/param.h> instead of <sys/types.h>, but it
is more useful for man pages to document minimal prerequisites.
1997-04-11 17:55:19 +00:00
Bruce Evans
29ea3efb24
Fixed synopsis:
...
- don't declare nonexistent function sleep().
- don't include <sys/errno.h> explicitly.
sleep() should be nuked some more, e.g., this man page should not be
named after a nonexistent function.
1997-04-11 17:49:56 +00:00
Mike Pritchard
405eecfbb1
Check for -1 instead of EOF in the getopt() example.
...
Submitted by: Kent Vander Velden
1997-04-09 19:03:14 +00:00
Mike Pritchard
db0ed86298
Document wakeup_one().
1997-04-09 05:39:32 +00:00
Mike Pritchard
d532602fe9
Fix a xref.
...
Obtained from: NetBSD-bus PR# 3464
1997-04-08 20:01:15 +00:00
Wolfram Schneider
28fb62d30e
Add manual page symlinks
...
YP.4 -> yp.4
nis.4 -> yp.4
NIS.4 -> yp.4
1997-04-03 12:32:42 +00:00
John-Mark Gurney
df3cc9399c
uncomment CD_Q_BCD_TRACKS flag, add xref to scsi(4)
1997-04-02 09:41:16 +00:00
Mike Pritchard
b5d3fbf904
Add od(4). Closes PR# 3170.
...
Submitted by: Shunsuke Akiyama <akiyama@jp.freebsd.org>
1997-04-01 19:52:37 +00:00
John Polstra
93abe8fedb
Correct the name of a header file that is referenced.
1997-04-01 04:04:09 +00:00
Mike Pritchard
7c692a17cf
Update to reflect the recent changes to support better inode
...
generation numbers.
1997-03-24 00:33:38 +00:00
Mike Pritchard
88cf6634a5
Add malloc(9) to document the kernel malloc() and free() routines.
...
Obtained from: NetBSD w/changes to reflect current FreeBSD headers
and diagnostic messages.
1997-03-22 23:50:21 +00:00
Mike Pritchard
5ea8e149f2
Minor mdoc fixes.
1997-03-22 22:47:34 +00:00
Mike Pritchard
c8ff0947c0
Add vslock(9) to document the vslock() and vsunlock() kernel functions.
...
Obtained from: NetBSD
1997-03-22 22:21:37 +00:00
Mike Pritchard
1e133bd480
One minor mdoc fix.
1997-03-22 22:19:26 +00:00
Mike Pritchard
dad0f56607
Add kernacc(9) that documents the kernacc() and useracc() kernel
...
functions.
Obtained from: NetBSD (renamed from access.9)
1997-03-22 22:06:07 +00:00
Mike Pritchard
4b2502a3e8
Add physio(9).
...
Obtained from: NetBSD w/minor FreeBSD changes
1997-03-22 21:31:29 +00:00
Mike Pritchard
b6c4b1903b
Add mi_switch.9. It documents the kernel mi_switch() and cpu_switch()
...
context switching functions.
Obtained from: NetBSD (renamed from ctxsw.9)
1997-03-22 20:59:18 +00:00
Mike Pritchard
ec505e0408
Add resettodr(9).
...
Obtained from: NetBSD
1997-03-22 20:07:04 +00:00
Mike Pritchard
4035c9100d
Add inittodr(9) to document how the system clock is initialized.
...
Obtained from NetBSD and then modified to reflect how things work
in FreeBSD, along with some minor changes to make a few points
clearer.
1997-03-22 19:46:44 +00:00
Mike Pritchard
de1543a46d
Add time(9) to document the kernel time variables. Obtained from
...
NetBSD and then modified by me to reflect some FreeBSD specific
things and to clarify some other pointed based on some old mail
from Bruce Evans about this man page.
1997-03-22 19:09:31 +00:00
Mike Pritchard
95522ed527
Minor mdoc cleanup - don't use .Pa for non-pathname items.
1997-03-21 20:16:33 +00:00
Mike Pritchard
dd5527c607
Use the .Fx macro for FreeBSD references for releases prior to 2.0.
...
Use the .Tn macro for generic FreeBSD references. Cleanup other
formatting problems noticed while making the above changes.
1997-03-21 20:14:15 +00:00
Mike Pritchard
fb5ce63a63
Fix a number of typos and use the .Tn macro where appropriate.
1997-03-21 20:04:21 +00:00
Mike Pritchard
0728623156
Document the .An (author name) macro. Also cleanup some other problems
...
I noticed while editing these man pages.
Usage: .An Author_name
Example:
This manual page was written by
.An Mike Pritchard Aq mpp@FreeBSD.ORG .
Produces:
This manual page was written by Mike Pritchard <mpp@FreeBSD.ORG>.
1997-03-20 16:04:04 +00:00
Bruce Evans
eb051a2cf8
Fixed missing #includes in synopsis.
...
Fixed stale reference to <sys/inode.h>.
1997-03-19 21:02:11 +00:00
Mike Pritchard
8889d6ac3a
Document the .Rv (return values) macro.
...
".Rv -std atexit" will generate the following text:
The atexit() function returns the value 0 if successful; otherwise the
value -1 is returned and the global variable errno is set to indicate the
error.
1997-03-19 21:01:45 +00:00
Bruce Evans
e0d9d675fb
Fixed misuse of .Ft for enum members. (.Fa seems to be the best
...
available macro for enum, struct and union members. .Ft seems to
be the best available macro for enum, struct and union tags and
types).
Fixed missing void arg types.
1997-03-19 20:42:18 +00:00
Mike Pritchard
5b945c8686
Update the table of contents such as it is to reflect my previous change.
1997-03-19 20:31:42 +00:00
Mike Pritchard
c41c97fab9
Document the previously undocumented .Bf (begin font mode) macro.
...
Moved the descriptions of the .Em, .Li and .Sy macros into
the new "Font Modes" sub-section along with .Bf, since they are
all related.
1997-03-19 20:16:50 +00:00
Bruce Evans
7b46e774ec
Fixed missing #include of <sys/types.h> in synopsis.
1997-03-19 19:48:24 +00:00
Bruce Evans
ddbd069887
Fixed missing #include(s) (mostly of <sys/types.h> in synopsis).
...
Reviewed by: wollman
1997-03-19 19:47:43 +00:00
Bruce Evans
c85c53625d
Fixed synopsis (after the cleanup of <sys/snoop.h>, there are no other
...
prerequisites; previously <sys/ioctl.h> was bogus and some prerequisites
weren't documented).
1997-03-19 04:58:33 +00:00
Bruce Evans
401caa1438
Fixed wrong #include in synopsis. <sys/dir.h> has been deprecated for
...
years.
Not fixed: stale, misformatted copy of <dirent.h>. I will be cleaning
up the dirent.h and dir.h headers soon (ufs stuff needs to be separated
better), so don't change the man page yet.
1997-03-19 03:48:12 +00:00
Bruce Evans
612a931654
Fixed missing #includes in synopsis.
1997-03-19 03:23:54 +00:00
Bruce Evans
21f8e39341
Fixed synopsis (wrong #includes and superfluous parentheses in typedef).
...
Nuked the confusing timeout_func_t typedef. It will go away in <systm.h>
later.
1997-03-19 03:18:01 +00:00
Bruce Evans
02a98699c2
Fixed wrong number of args in STAILQ_REMOVE_HEAD() in synopsis.
1997-03-19 02:57:50 +00:00
Mike Pritchard
aef772c06b
The "usage" line for the .Ic macro incorrectly says that it is
...
the .Li macro.
1997-03-18 20:00:36 +00:00
Mike Pritchard
5f1376d7ec
Backout part of my previous change that changed MIN/TIME to VMIN/VTIME
...
throughout the man page. Only some of these were corrected.
Pointed out by: bde
1997-03-18 07:17:22 +00:00
Mike Pritchard
ed7922d368
The VMIN and VTIME c_cc values were incorrectly defined as MIN and TIME.
...
Obtained from: NetBSD PR# 3243
1997-03-14 05:01:14 +00:00
Mike Pritchard
623899a3c3
Add some text regarding security issues when using a shell
...
script as the login shell. Closes PR# 2978.
1997-03-14 02:37:27 +00:00
Mike Pritchard
0b65a99863
Oops. I misread some commit mail - remove the blurb about comments
...
in passwd/group not being enabled by default.
1997-03-12 14:05:36 +00:00
Mike Pritchard
c5cb834a27
Typo police (this one wasn't yours, Joerg :-)
1997-03-12 13:51:57 +00:00
Mike Pritchard
902c520a16
Typo police.
1997-03-12 13:51:17 +00:00
Mike Pritchard
f57cc79d87
Improve the wording of the section on comments in the group and passwd
...
files. Also mention that this feature is not enabled by default
and that they must be enabled by compile-time options.
Fixed another typo or two I noticed while I was at it.
1997-03-12 13:46:16 +00:00
Joerg Wunsch
e48ff1868b
Document the various link-level flag for these drivers.
...
2.2 candidate (after typo police :)
1997-03-12 13:37:56 +00:00
Wolfram Schneider
2641f58969
Sync with /etc/mtree/BSD.*.dist
1997-03-09 22:39:56 +00:00
John-Mark Gurney
c3df09bb7a
replace non-existant ioctl [GP]IO_STRMAP with what really does exist,
...
[GS]ETFKEY...
Definately a 2.2 Candidate
a clean up of this page is to follow.... but I'm not sure I'll have it
before 2.2 is to be released...
1997-03-09 20:53:20 +00:00
Wolfram Schneider
22bf981261
Document comments.
1997-03-09 12:20:48 +00:00
Mike Pritchard
6aea1c7c74
The CIRCLEQ_ENTRY example was wrong. Part of PR# 2917.
1997-03-09 00:49:00 +00:00