]> granicus.if.org Git - python/commitdiff
Document the extra epoll flags
authorJean-Paul Calderone <exarkun@divmod.com>
Sun, 18 Jul 2010 16:30:31 +0000 (16:30 +0000)
committerJean-Paul Calderone <exarkun@divmod.com>
Sun, 18 Jul 2010 16:30:31 +0000 (16:30 +0000)
Doc/library/select.rst

index eb63710c3c0f2350381ebf78d790b99dae2b4948..5418093ac4433a1be1395cf6bc2dd1307eb71c0c 100644 (file)
@@ -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.                                      |
    +-----------------------+-----------------------------------------------+