diff options
author | Jean-Paul Calderone <exarkun@divmod.com> | 2010-07-18 16:30:31 (GMT) |
---|---|---|
committer | Jean-Paul Calderone <exarkun@divmod.com> | 2010-07-18 16:30:31 (GMT) |
commit | 7f54dce9bd4a931db85bb55769d5ce2409961246 (patch) | |
tree | dfc1fe7ecb000c8886867a92a65ad770bd8ddc38 /Doc/library/select.rst | |
parent | 7f94f392a041dd61e845fc11484803a15cde88c1 (diff) | |
download | cpython-7f54dce9bd4a931db85bb55769d5ce2409961246.zip cpython-7f54dce9bd4a931db85bb55769d5ce2409961246.tar.gz cpython-7f54dce9bd4a931db85bb55769d5ce2409961246.tar.bz2 |
Document the extra epoll flags
Diffstat (limited to 'Doc/library/select.rst')
-rw-r--r-- | Doc/library/select.rst | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Doc/library/select.rst b/Doc/library/select.rst index eb63710..5418093 100644 --- a/Doc/library/select.rst +++ b/Doc/library/select.rst @@ -131,15 +131,15 @@ Edge and Level Trigger Polling (epoll) Objects | :const:`EPOLLONESHOT` | Set one-shot behavior. After one event is | | | pulled out, the fd is internally disabled | +-----------------------+-----------------------------------------------+ - | :const:`EPOLLRDNORM` | ??? | + | :const:`EPOLLRDNORM` | Equivalent to :const:`EPOLLIN` | +-----------------------+-----------------------------------------------+ - | :const:`EPOLLRDBAND` | ??? | + | :const:`EPOLLRDBAND` | Priority data band can be read. | +-----------------------+-----------------------------------------------+ - | :const:`EPOLLWRNORM` | ??? | + | :const:`EPOLLWRNORM` | Equivalent to :const:`EPOLLOUT` | +-----------------------+-----------------------------------------------+ - | :const:`EPOLLWRBAND` | ??? | + | :const:`EPOLLWRBAND` | Priority data may be written. | +-----------------------+-----------------------------------------------+ - | :const:`EPOLLMSG` | ??? | + | :const:`EPOLLMSG` | Ignored. | +-----------------------+-----------------------------------------------+ |