Switch formatting style

This commit is contained in:
Michael Kerrisk 2007-07-16 18:57:34 +00:00
parent 25a46448f0
commit c307030c84
4 changed files with 6 additions and 6 deletions

View File

@ -33,9 +33,9 @@ sched_get_priority_max, sched_get_priority_min \- get static priority range
.SH SYNOPSIS
.B #include <sched.h>
.sp
\fBint sched_get_priority_max(int \fIpolicy\fB);
.BR "int sched_get_priority_max(int " policy );
.sp
\fBint sched_get_priority_min(int \fIpolicy\fB);
.BI "int sched_get_priority_min(int " policy );
.SH DESCRIPTION
.BR sched_get_priority_max ()
returns the maximum priority value that can be used with the

View File

@ -33,7 +33,7 @@ sched_rr_get_interval \- get the SCHED_RR interval for the named process
.SH SYNOPSIS
.B #include <sched.h>
.sp
\fBint sched_rr_get_interval(pid_t \fIpid\fB, struct timespec *\fItp\fB);
.BI "int sched_rr_get_interval(pid_t " pid ", struct timespec * " tp );
.SH DESCRIPTION
.BR sched_rr_get_interval ()
writes into the \fItimespec\fR structure pointed to by \fItp\fR the

View File

@ -35,9 +35,9 @@ sched_setparam, sched_getparam \- set and get scheduling parameters
.nf
.B #include <sched.h>
.sp
\fBint sched_setparam(pid_t \fIpid\fB, const struct sched_param *\fIparam\fB);
.BI "int sched_setparam(pid_t " pid ", const struct sched_param *" param );
.sp
\fBint sched_getparam(pid_t \fIpid\fB, struct sched_param *\fIparam\fB);
.BI "int sched_getparam(pid_t " pid ", struct sched_param *" param );
.sp
\fBstruct sched_param {
...

View File

@ -33,7 +33,7 @@ sched_yield \- yield the processor
.SH SYNOPSIS
.B #include <sched.h>
.sp
\fBint sched_yield(void);
.B int sched_yield(void);
.SH DESCRIPTION
A process can relinquish the processor voluntarily without blocking by calling
.BR sched_yield ().