From: Jean-Paul Calderone Date: Sun, 18 Jul 2010 16:30:31 +0000 (+0000) Subject: Document the extra epoll flags X-Git-Tag: v3.2a1~170 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7f54dce9bd4a931db85bb55769d5ce2409961246;p=python Document the extra epoll flags --- diff --git a/Doc/library/select.rst b/Doc/library/select.rst index eb63710c3c..5418093ac4 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. | +-----------------------+-----------------------------------------------+