Properly separate paragraphs by using `.Pp' instead of a blank line.

This commit is contained in:
Chris Costello 2000-06-23 20:35:45 +00:00
parent 4f18b87801
commit 1c67d6c539
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=62022
3 changed files with 6 additions and 6 deletions

View file

@ -164,7 +164,7 @@ physical pages.
Hence a process with two distinct locked mappings of the same physical page
counts as 2 pages against the per-process limit and as only a single page
in the system limit.
.Pp
The per-process resource limit is not currently supported.
.Sh HISTORY
The

View file

@ -44,14 +44,14 @@
.Sh DESCRIPTION
.Fn rtprio
is used to lookup or change the realtime or idle priority of a process.
.Pp
.Fa function
specifies the operation to be performed.
RTP_LOOKUP to lookup the current priority,
and RTP_SET to set the priority.
.Fa pid
specifies the process to be used, 0 for the current process.
.Pp
.Fa *rtp
is a pointer to a struct rtprio which is used to specify the priority and priority type.
This structure has the following form:
@ -71,9 +71,9 @@ The priority specified by the
field ranges between 0 and
.Dv RTP_PRIO_MAX (usually 31) .
0 is the highest possible priority.
.Pp
Realtime and idle priority is inherited through fork() and exec().
.Pp
A realtime process can only be preempted by a process of equal or
higher priority, or by an interrupt; idle priority processes will run only
when no other real/normal priority process is runnable.

View file

@ -95,7 +95,7 @@ The
.Fa sched_param
structure is defined in
.Fa <sched.h> :
.Pp
.Bd -literal -offset indent
struct sched_param {
int sched_priority; /* scheduling priority */