#include "Python.h"
#include <string.h>
#include <sys/epoll.h>
Go to the source code of this file.
Define Documentation
Function Documentation
      
        
          | static PyObject* _epoll_ctl  | 
          ( | 
          PyObject *  | 
          self,  | 
        
        
           | 
           | 
          PyObject *  | 
          args  | 
        
        
           | 
          ) | 
           |  [static] | 
        
      
 
 
      
        
          | static PyObject* _epoll_wait  | 
          ( | 
          PyObject *  | 
          self,  | 
        
        
           | 
           | 
          PyObject *  | 
          args  | 
        
        
           | 
          ) | 
           |  [static] | 
        
      
 
 
Variable Documentation
Initial value: {
  {"epoll_create", (PyCFunction)_epoll_create, METH_NOARGS,
   "Create an epoll file descriptor"},
  {"epoll_ctl", _epoll_ctl, METH_VARARGS,
   "Control an epoll file descriptor"},
  {"epoll_wait", _epoll_wait, METH_VARARGS,
   "Wait for events on an epoll file descriptor"},
  {NULL, NULL, 0, NULL}
}
 
Definition at line 97 of file epoll.c.