Formatting fixes

This commit is contained in:
Michael Kerrisk 2005-10-28 17:48:03 +00:00
parent 3dfe7e0ddd
commit 66eca51e97
1 changed files with 5 additions and 5 deletions

View File

@ -101,8 +101,8 @@ the caller might end up waiting for some data that is already present inside
the input buffer. In the above example, an event on
.B RFD
will be generated because of the write done in
.B 2
, and the event is consumed in
.BR 2
and the event is consumed in
.BR 3 .
Since the read operation done in
.B 4
@ -119,9 +119,9 @@ should use non-blocking file descriptors to avoid having a blocking
read or write starve the task that is handling multiple file descriptors.
The suggested way to use
.B epoll
as an Edge Triggered (
.B EPOLLET
) interface is below, and possible pitfalls to avoid follow.
as an Edge Triggered
.RB ( EPOLLET )
interface is below, and possible pitfalls to avoid follow.
.RS
.TP
.B i