diff options
author | Hiroki Noda <kubo39@gmail.com> | 2020-03-22 06:52:44 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-21 22:52:44 +0100 |
commit | 86b9435138109441ffaa5a9c221f641ec3ed4b05 (patch) | |
tree | f49dce435a608fab2f58229b2b35ba80443e2243 | |
parent | 586ebb090b3c7fd2fedbaa24e2b00b7caae4e009 (diff) | |
download | Nim-86b9435138109441ffaa5a9c221f641ec3ed4b05.tar.gz |
Add EPOLLEXCLUSIVE (#13718)
-rw-r--r-- | lib/posix/epoll.nim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/posix/epoll.nim b/lib/posix/epoll.nim index 2d38137bb..2236bb16b 100644 --- a/lib/posix/epoll.nim +++ b/lib/posix/epoll.nim @@ -23,6 +23,7 @@ const EPOLLWRBAND* = 0x00000200 EPOLLMSG* = 0x00000400 EPOLLRDHUP* = 0x00002000 + EPOLLEXCLUSIVE* = 1 shl 28 EPOLLWAKEUP* = 1 shl 29 EPOLLONESHOT* = 1 shl 30 EPOLLET* = 1 shl 31 |