| 1 |
#define VARx(type,name) VAR(name, type name) |
| 2 |
|
| 3 |
VARx(ev_tstamp, now_floor) /* last time we refreshed rt_time */ |
| 4 |
VARx(ev_tstamp, mn_now) /* monotonic clock "now" */ |
| 5 |
VARx(ev_tstamp, rt_now) |
| 6 |
VARx(ev_tstamp, rtmn_diff) /* difference realtime - monotonic time */ |
| 7 |
VARx(int, method) |
| 8 |
|
| 9 |
VARx(ev_tstamp, method_fudge) /* assumed typical timer resolution */ |
| 10 |
VAR (method_modify, void (*method_modify)(EV_P_ int fd, int oev, int nev)) |
| 11 |
VAR (method_poll , void (*method_poll)(EV_P_ ev_tstamp timeout)) |
| 12 |
|
| 13 |
VARx(int, postfork) /* true if we need to recreate kernel state after fork */ |
| 14 |
VARx(int, activecnt) /* number of active events */ |
| 15 |
|
| 16 |
#if EV_USE_SELECT || EV_GENWRAP |
| 17 |
VARx(unsigned char *, vec_ri) |
| 18 |
VARx(unsigned char *, vec_ro) |
| 19 |
VARx(unsigned char *, vec_wi) |
| 20 |
VARx(unsigned char *, vec_wo) |
| 21 |
VARx(int, vec_max) |
| 22 |
#endif |
| 23 |
|
| 24 |
#if EV_USE_POLL || EV_GENWRAP |
| 25 |
VARx(struct pollfd *, polls) |
| 26 |
VARx(int, pollmax) |
| 27 |
VARx(int, pollcnt) |
| 28 |
VARx(int *, pollidxs) /* maps fds into structure indices */ |
| 29 |
VARx(int, pollidxmax) |
| 30 |
#endif |
| 31 |
|
| 32 |
#if EV_USE_EPOLL || EV_GENWRAP |
| 33 |
VARx(int, epoll_fd) |
| 34 |
|
| 35 |
VARx(struct epoll_event *, epoll_events) |
| 36 |
VARx(int, epoll_eventmax) |
| 37 |
#endif |
| 38 |
|
| 39 |
#if EV_USE_KQUEUE || EV_GENWRAP |
| 40 |
VARx(int, kqueue_fd) |
| 41 |
VARx(struct kevent *, kqueue_changes) |
| 42 |
VARx(int, kqueue_changemax) |
| 43 |
VARx(int, kqueue_changecnt) |
| 44 |
VARx(struct kevent *, kqueue_events) |
| 45 |
VARx(int, kqueue_eventmax) |
| 46 |
#endif |
| 47 |
|
| 48 |
VARx(ANFD *, anfds) |
| 49 |
VARx(int, anfdmax) |
| 50 |
|
| 51 |
VAR (pendings, ANPENDING *pendings [NUMPRI]) |
| 52 |
VAR (pendingmax, int pendingmax [NUMPRI]) |
| 53 |
VAR (pendingcnt, int pendingcnt [NUMPRI]) |
| 54 |
|
| 55 |
VARx(int *, fdchanges) |
| 56 |
VARx(int, fdchangemax) |
| 57 |
VARx(int, fdchangecnt) |
| 58 |
|
| 59 |
VARx(struct ev_timer **, timers) |
| 60 |
VARx(int, timermax) |
| 61 |
VARx(int, timercnt) |
| 62 |
|
| 63 |
VARx(struct ev_periodic **, periodics) |
| 64 |
VARx(int, periodicmax) |
| 65 |
VARx(int, periodiccnt) |
| 66 |
|
| 67 |
VARx(struct ev_idle **, idles) |
| 68 |
VARx(int, idlemax) |
| 69 |
VARx(int, idlecnt) |
| 70 |
|
| 71 |
VARx(struct ev_prepare **, prepares) |
| 72 |
VARx(int, preparemax) |
| 73 |
VARx(int, preparecnt) |
| 74 |
|
| 75 |
VARx(struct ev_check **, checks) |
| 76 |
VARx(int, checkmax) |
| 77 |
VARx(int, checkcnt) |
| 78 |
|
| 79 |
#undef VARx |
| 80 |
|