pthread_attr_setschedpolicy.3: ffix

This commit is contained in:
Michael Kerrisk 2008-11-07 10:02:17 -05:00
parent 3847be7851
commit dc05a5d50c
1 changed files with 4 additions and 4 deletions

View File

@ -29,10 +29,10 @@ scheduling policy attribute in thread attributes object
.nf
.B #include <pthread.h>
.BI "int pthread_attr_setschedpolicy(pthread_attr_t *" attr ,
.BI " int " policy );
.BI "int pthread_attr_getschedpolicy(pthread_attr_t *" attr ,
.BI " int *" policy );
.BI "int pthread_attr_setschedpolicy(pthread_attr_t *" attr \
", int " policy );
.BI "int pthread_attr_getschedpolicy(pthread_attr_t *" attr \
", int " policy );
.sp
Compile and link with \fI\-pthread\fP.
.SH DESCRIPTION