mirror of /home/gitosis/repositories/libev.git
Mirror of :pserver:anonymous@cvs.schmorp.de/schmorpforge libev
http://software.schmorp.de/pkg/libev.html
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
81 lines
1.9 KiB
81 lines
1.9 KiB
#define VARx(type,name) VAR(name, type name) |
|
|
|
VARx(ev_tstamp, now_floor) /* last time we refreshed rt_time */ |
|
VARx(ev_tstamp, mn_now) /* monotonic clock "now" */ |
|
VARx(ev_tstamp, rtmn_diff) /* difference realtime - monotonic time */ |
|
VARx(int, method) |
|
|
|
VARx(ev_tstamp, method_fudge) /* assumed typical timer resolution */ |
|
VAR (method_modify, void (*method_modify)(EV_P_ int fd, int oev, int nev)) |
|
VAR (method_poll , void (*method_poll)(EV_P_ ev_tstamp timeout)) |
|
|
|
VARx(int, postfork) /* true if we need to recreate kernel state after fork */ |
|
VARx(int, activecnt) /* number of active events */ |
|
|
|
#if EV_USE_SELECT || EV_GENWRAP |
|
VARx(void *, vec_ri) |
|
VARx(void *, vec_ro) |
|
VARx(void *, vec_wi) |
|
VARx(void *, vec_wo) |
|
VARx(int, vec_max) |
|
#endif |
|
|
|
#if EV_USE_POLL || EV_GENWRAP |
|
VARx(struct pollfd *, polls) |
|
VARx(int, pollmax) |
|
VARx(int, pollcnt) |
|
VARx(int *, pollidxs) /* maps fds into structure indices */ |
|
VARx(int, pollidxmax) |
|
#endif |
|
|
|
#if EV_USE_EPOLL || EV_GENWRAP |
|
VARx(int, epoll_fd) |
|
|
|
VARx(struct epoll_event *, epoll_events) |
|
VARx(int, epoll_eventmax) |
|
#endif |
|
|
|
#if EV_USE_KQUEUE || EV_GENWRAP |
|
VARx(int, kqueue_fd) |
|
VARx(struct kevent *, kqueue_changes) |
|
VARx(int, kqueue_changemax) |
|
VARx(int, kqueue_changecnt) |
|
VARx(struct kevent *, kqueue_events) |
|
VARx(int, kqueue_eventmax) |
|
#endif |
|
|
|
VARx(ANFD *, anfds) |
|
VARx(int, anfdmax) |
|
|
|
VAR (pendings, ANPENDING *pendings [NUMPRI]) |
|
VAR (pendingmax, int pendingmax [NUMPRI]) |
|
VAR (pendingcnt, int pendingcnt [NUMPRI]) |
|
|
|
VARx(int *, fdchanges) |
|
VARx(int, fdchangemax) |
|
VARx(int, fdchangecnt) |
|
|
|
VARx(struct ev_timer **, timers) |
|
VARx(int, timermax) |
|
VARx(int, timercnt) |
|
|
|
#if EV_PERIODICS || EV_GENWRAP |
|
VARx(struct ev_periodic **, periodics) |
|
VARx(int, periodicmax) |
|
VARx(int, periodiccnt) |
|
#endif |
|
|
|
VARx(struct ev_idle **, idles) |
|
VARx(int, idlemax) |
|
VARx(int, idlecnt) |
|
|
|
VARx(struct ev_prepare **, prepares) |
|
VARx(int, preparemax) |
|
VARx(int, preparecnt) |
|
|
|
VARx(struct ev_check **, checks) |
|
VARx(int, checkmax) |
|
VARx(int, checkcnt) |
|
|
|
#undef VARx |
|
|
|
|