epoll_ctl.2: ffix

This commit is contained in:
Michael Kerrisk 2009-04-27 15:26:19 +12:00
parent 35035b2ead
commit 6ebde978ef
1 changed files with 6 additions and 6 deletions

View File

@ -79,15 +79,15 @@ is defined as :
.in +4n
.nf
typedef union epoll_data {
void *ptr;
int fd;
__uint32_t u32;
__uint64_t u64;
void *ptr;
int fd;
__uint32_t u32;
__uint64_t u64;
} epoll_data_t;
struct epoll_event {
__uint32_t events; /* Epoll events */
epoll_data_t data; /* User data variable */
__uint32_t events; /* Epoll events */
epoll_data_t data; /* User data variable */
};
.fi
.in