]> git.ipfire.org Git - thirdparty/man-pages.git/blobdiff - man3/pthread_attr_setinheritsched.3
man*/: srcfix (Use .P instead of .PP or .LP)
[thirdparty/man-pages.git] / man3 / pthread_attr_setinheritsched.3
index f4b49edced151bd2408a8bb0240807c233a03546..832f3b5430cf9bac5dfa94cdd1dc6dd4dbc4783b 100644 (file)
@@ -14,7 +14,7 @@ POSIX threads library
 .SH SYNOPSIS
 .nf
 .B #include <pthread.h>
-.PP
+.P
 .BI "int pthread_attr_setinheritsched(pthread_attr_t *" attr ,
 .BI "                                 int " inheritsched );
 .BI "int pthread_attr_getinheritsched(const pthread_attr_t *restrict " attr ,
@@ -34,7 +34,7 @@ the thread attributes object
 will inherit its scheduling attributes from the calling thread
 or whether it will take them from
 .IR attr .
-.PP
+.P
 The following scheduling attributes are affected by the
 inherit-scheduler attribute:
 scheduling policy
@@ -43,7 +43,7 @@ scheduling priority
 .RB ( pthread_attr_setschedparam (3)),
 and contention scope
 .RB ( pthread_attr_setscope (3)).
-.PP
+.P
 The following values may be specified in
 .IR inheritsched :
 .TP
@@ -61,11 +61,11 @@ Threads that are created using
 take their scheduling attributes from the values specified
 by the attributes object.
 .\" FIXME Document the defaults for scheduler settings
-.PP
+.P
 The default setting of the inherit-scheduler attribute in
 a newly initialized thread attributes object is
 .BR PTHREAD_INHERIT_SCHED .
-.PP
+.P
 The
 .BR pthread_attr_getinheritsched ()
 returns the inherit-scheduler attribute of the thread attributes object
@@ -82,7 +82,7 @@ can fail with the following error:
 .B EINVAL
 Invalid value in
 .IR inheritsched .
-.PP
+.P
 POSIX.1 also documents an optional
 .B ENOTSUP
 error ("attempt was made to set the attribute to an unsupported value") for