Kaydet (Commit) e1d22fda authored tarafından Berker Peksag's avatar Berker Peksag

Expose EPOLLRDHUP conditionally

üst 1107f09b
...@@ -2481,7 +2481,10 @@ PyInit_select(void) ...@@ -2481,7 +2481,10 @@ PyInit_select(void)
PyModule_AddIntMacro(m, EPOLLPRI); PyModule_AddIntMacro(m, EPOLLPRI);
PyModule_AddIntMacro(m, EPOLLERR); PyModule_AddIntMacro(m, EPOLLERR);
PyModule_AddIntMacro(m, EPOLLHUP); PyModule_AddIntMacro(m, EPOLLHUP);
#ifdef EPOLLRDHUP
/* Kernel 2.6.17 */
PyModule_AddIntMacro(m, EPOLLRDHUP); PyModule_AddIntMacro(m, EPOLLRDHUP);
#endif
PyModule_AddIntMacro(m, EPOLLET); PyModule_AddIntMacro(m, EPOLLET);
#ifdef EPOLLONESHOT #ifdef EPOLLONESHOT
/* Kernel 2.6.2+ */ /* Kernel 2.6.2+ */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment