diff options
| -rw-r--r-- | man2/epoll_create.2 | 2 | ||||
| -rw-r--r-- | man2/epoll_ctl.2 | 2 | ||||
| -rw-r--r-- | man2/epoll_wait.2 | 5 |
3 files changed, 5 insertions, 4 deletions
diff --git a/man2/epoll_create.2 b/man2/epoll_create.2 index 22461ee683..392f102e0a 100644 --- a/man2/epoll_create.2 +++ b/man2/epoll_create.2 @@ -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 diff --git a/man2/epoll_ctl.2 b/man2/epoll_ctl.2 index d4678795b5..8f6cc169d1 100644 --- a/man2/epoll_ctl.2 +++ b/man2/epoll_ctl.2 @@ -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 diff --git a/man2/epoll_wait.2 b/man2/epoll_wait.2 index da2b6ea13a..1dde175725 100644 --- a/man2/epoll_wait.2 +++ b/man2/epoll_wait.2 @@ -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 : |
