summaryrefslogtreecommitdiffstats
path: root/man2/sched_setparam.2
diff options
context:
space:
mode:
Diffstat (limited to 'man2/sched_setparam.2')
-rw-r--r--man2/sched_setparam.214
1 files changed, 7 insertions, 7 deletions
diff --git a/man2/sched_setparam.2 b/man2/sched_setparam.2
index f054f5d..3e69961 100644
--- a/man2/sched_setparam.2
+++ b/man2/sched_setparam.2
@@ -8,7 +8,7 @@
.\" revision
.\" Modified 2004-05-27 by Michael Kerrisk <mtk.manpages@gmail.com>
.\"
-.TH sched_setparam 2 2023-03-30 "Linux man-pages 6.05.01"
+.TH sched_setparam 2 2023-10-31 "Linux man-pages 6.7"
.SH NAME
sched_setparam, sched_getparam \- set and get scheduling parameters
.SH LIBRARY
@@ -17,10 +17,10 @@ Standard C library
.SH SYNOPSIS
.nf
.B #include <sched.h>
-.PP
+.P
.BI "int sched_setparam(pid_t " pid ", const struct sched_param *" param );
.BI "int sched_getparam(pid_t " pid ", struct sched_param *" param );
-.PP
+.P
\fBstruct sched_param {
...
int \fIsched_priority\fB;
@@ -40,13 +40,13 @@ policy of the thread identified by
See
.BR sched (7)
for a description of the scheduling policies supported under Linux.
-.PP
+.P
.BR sched_getparam ()
retrieves the scheduling parameters for the
thread identified by \fIpid\fP.
If \fIpid\fP is zero, then the parameters
of the calling thread are retrieved.
-.PP
+.P
.BR sched_setparam ()
checks the validity of \fIparam\fP for the scheduling policy of the
thread.
@@ -55,11 +55,11 @@ range given by
.BR sched_get_priority_min (2)
and
.BR sched_get_priority_max (2).
-.PP
+.P
For a discussion of the privileges and resource limits related to
scheduling priority and policy, see
.BR sched (7).
-.PP
+.P
POSIX systems on which
.BR sched_setparam ()
and