Formatting fix

This commit is contained in:
Michael Kerrisk 2006-01-14 17:09:59 +00:00
parent 964d4d9c5c
commit 6e126ed614
3 changed files with 5 additions and 4 deletions

View File

@ -27,7 +27,7 @@ epoll_create \- open an epoll file descriptor
.SH SYNOPSIS .SH SYNOPSIS
.B #include <sys/epoll.h> .B #include <sys/epoll.h>
.sp .sp
.BR "int epoll_create(int " size ) .BI "int epoll_create(int " size )
.SH DESCRIPTION .SH DESCRIPTION
Open an Open an
.B epoll .B epoll

View File

@ -25,7 +25,7 @@ epoll_ctl \- control interface for an epoll descriptor
.SH SYNOPSIS .SH SYNOPSIS
.B #include <sys/epoll.h> .B #include <sys/epoll.h>
.sp .sp
.BR "int epoll_ctl(int " epfd ", int " op ", int " fd ", struct epoll_event *" event ) .BI "int epoll_ctl(int " epfd ", int " op ", int " fd ", struct epoll_event *" event )
.SH DESCRIPTION .SH DESCRIPTION
Control an Control an
.B epoll .B epoll

View File

@ -25,7 +25,7 @@ epoll_wait \- wait for an I/O event on an epoll file descriptor
.SH SYNOPSIS .SH SYNOPSIS
.B #include <sys/epoll.h> .B #include <sys/epoll.h>
.sp .sp
.BR "int epoll_wait(int " epfd ", struct epoll_event * " events ", int " maxevents ", int " timeout) .BI "int epoll_wait(int " epfd ", struct epoll_event * " events ", int " maxevents ", int " timeout)
.SH DESCRIPTION .SH DESCRIPTION
Wait for events on the Wait for events on the
.B epoll .B epoll
@ -50,7 +50,8 @@ wait indefinitely, while specifying a
.I timeout .I timeout
equal to zero makes equal to zero makes
.BR epoll_wait (2) .BR epoll_wait (2)
to return immediately even if no events are available ( return code equal to zero ). to return immediately even if no events are available
(return code equal to zero).
The The
.I struct epoll_event .I struct epoll_event
is defined as : is defined as :