Sort NAMES section and separate Nm arguments from trailing punctuation.

This commit is contained in:
Sheldon Hearn 2000-11-13 13:12:44 +00:00
parent d8134896e9
commit 6cfaa4a7de
2 changed files with 18 additions and 18 deletions

View File

@ -30,10 +30,10 @@
.Os
.Dt RANDOM 9
.Sh NAME
.Nm srandom,
.Nm random,
.Nm arc4random,
.Nm read_random
.Nm arc4random ,
.Nm random ,
.Nm read_random ,
.Nm srandom
.Nd supply pseudo-random numbers.
.Sh SYNOPSIS
.Fd #include <sys/libkern.h>
@ -53,7 +53,7 @@ The
function will by default produce a sequence of numbers that can be duplicated
by calling
.Fn srandom
with
with
.Ql 1
as the
.Ar seed .
@ -61,7 +61,7 @@ The
.Fn srandom
function may be called with any arbitrary
.Ar seed
value to get slightly more unpredictable numbers.
value to get slightly more unpredictable numbers.
It is important to remember that the
.Fn random
function is entirely predictable, and is therefore not of use where

View File

@ -29,17 +29,17 @@
.Os
.Dt SPL 9
.Sh NAME
.Nm splbio,
.Nm splclock,
.Nm splhigh,
.Nm splimp,
.Nm splnet,
.Nm splsoftclock,
.Nm splsofttty,
.Nm splstatclock,
.Nm spltty,
.Nm splvm,
.Nm spl0,
.Nm splbio ,
.Nm splclock ,
.Nm splhigh ,
.Nm splimp ,
.Nm splnet ,
.Nm splsoftclock ,
.Nm splsofttty ,
.Nm splstatclock ,
.Nm spltty ,
.Nm splvm ,
.Nm spl0 ,
.Nm splx
.Nd manipulate interrupt priorities
.Sh SYNOPSIS
@ -178,7 +178,7 @@ foointr(...)
wakeup(sc);
...
}
.Ed
Note that the interrupt handler should
.Em never