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
.B #include <sys/epoll.h>
.sp
.BR "int epoll_create(int " size )
.BI "int epoll_create(int " size )
.SH DESCRIPTION
Open an
.B epoll

View File

@ -25,7 +25,7 @@ epoll_ctl \- control interface for an epoll descriptor
.SH SYNOPSIS
.B #include <sys/epoll.h>
.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
Control an
.B epoll

View File

@ -25,7 +25,7 @@ epoll_wait \- wait for an I/O event on an epoll file descriptor
.SH SYNOPSIS
.B #include <sys/epoll.h>
.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
Wait for events on the
.B epoll
@ -50,7 +50,8 @@ wait indefinitely, while specifying a
.I timeout
equal to zero makes
.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
.I struct epoll_event
is defined as :