header: mark windows-specific fields in union epoll_data

This commit is contained in:
Bert Belder 2017-12-03 22:55:55 +01:00
parent f7e15f1ba8
commit 6209fd4850

View File

@ -47,8 +47,8 @@ typedef union epoll_data {
int fd;
uint32_t u32;
uint64_t u64;
SOCKET sock;
HANDLE hnd;
SOCKET sock; /* Windows specific */
HANDLE hnd; /* Windows specific */
} epoll_data_t;
struct epoll_event {