This commit is contained in:
Michael Kerrisk 2007-06-11 20:35:18 +00:00
parent a622ed8f93
commit 589cdb95ce
4 changed files with 0 additions and 4 deletions

View File

@ -33,7 +33,6 @@ nanosleep \- pause execution for a specified time
.B #include <time.h>
.sp
\fBint nanosleep(const struct timespec *\fIreq\fB, struct timespec *\fIrem\fB);
.fi
.SH DESCRIPTION
.BR nanosleep ()
delays the execution of the program for at least the time specified in

View File

@ -31,7 +31,6 @@ pread, pwrite \- read from or write to a file descriptor at a given offset
.BI "ssize_t pread(int " fd ", void *" buf ", size_t " count ", off_t " offset );
.sp
.BI "ssize_t pwrite(int " fd ", const void *" buf ", size_t " count ", off_t " offset );
.fi
.SH DESCRIPTION
.BR pread ()
reads up to

View File

@ -36,7 +36,6 @@ sched_get_priority_max, sched_get_priority_min \- get static priority range
\fBint sched_get_priority_max(int \fIpolicy\fB);
.sp
\fBint sched_get_priority_min(int \fIpolicy\fB);
.fi
.SH DESCRIPTION
.BR sched_get_priority_max ()
returns the maximum priority value that can be used with the

View File

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