Skip to content

Commit

Permalink
Style: sorted epoll flags.
Browse files Browse the repository at this point in the history
  • Loading branch information
VBart committed Jul 15, 2016
1 parent 46dd747 commit b60534e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/event/modules/ngx_epoll_module.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,18 @@
#define EPOLLIN 0x001
#define EPOLLPRI 0x002
#define EPOLLOUT 0x004
#define EPOLLERR 0x008
#define EPOLLHUP 0x010
#define EPOLLRDNORM 0x040
#define EPOLLRDBAND 0x080
#define EPOLLWRNORM 0x100
#define EPOLLWRBAND 0x200
#define EPOLLMSG 0x400
#define EPOLLERR 0x008
#define EPOLLHUP 0x010

#define EPOLLRDHUP 0x2000

#define EPOLLET 0x80000000
#define EPOLLONESHOT 0x40000000
#define EPOLLET 0x80000000

#define EPOLL_CTL_ADD 1
#define EPOLL_CTL_DEL 2
Expand Down

0 comments on commit b60534e

Please sign in to comment.