Commit dc3f515c authored by Denis Bilenko's avatar Denis Bilenko

loop: add 'sig_pending' attribute

parent bcb00e9c
...@@ -500,6 +500,8 @@ cdef public class loop [object PyGeventLoopObject, type PyGeventLoop_Type]: ...@@ -500,6 +500,8 @@ cdef public class loop [object PyGeventLoopObject, type PyGeventLoop_Type]:
LOOP_PROPERTY(activecnt) LOOP_PROPERTY(activecnt)
LOOP_PROPERTY(sig_pending)
#if EV_USE_SIGNALFD #if EV_USE_SIGNALFD
LOOP_PROPERTY(sigfd) LOOP_PROPERTY(sigfd)
#endif #endif
......
...@@ -73,6 +73,7 @@ cdef extern from "libev.h": ...@@ -73,6 +73,7 @@ cdef extern from "libev.h":
struct ev_loop: struct ev_loop:
int activecnt int activecnt
int sig_pending
int backend_fd int backend_fd
int sigfd int sigfd
unsigned int origflags unsigned int origflags
......
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