ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/libev/ev_vars.h
Revision: 1.15
Committed: Wed Nov 28 11:41:19 2007 UTC (16 years, 5 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-1_5
Changes since 1.14: +1 -1 lines
Log Message:
libevent integration

File Contents

# Content
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, rtmn_diff) /* difference realtime - monotonic time */
6 VARx(int, backend)
7
8 VARx(ev_tstamp, backend_fudge) /* assumed typical timer resolution */
9 VAR (backend_modify, void (*backend_modify)(EV_P_ int fd, int oev, int nev))
10 VAR (backend_poll , void (*backend_poll)(EV_P_ ev_tstamp timeout))
11 VARx(int, backend_fd)
12
13 VARx(int, postfork) /* true if we need to recreate kernel state after fork */
14 VARx(int, activecnt) /* total number of active events ("refcount") */
15
16 #if EV_USE_SELECT || EV_GENWRAP
17 VARx(void *, vec_ri)
18 VARx(void *, vec_ro)
19 VARx(void *, vec_wi)
20 VARx(void *, 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(struct epoll_event *, epoll_events)
34 VARx(int, epoll_eventmax)
35 #endif
36
37 #if EV_USE_KQUEUE || EV_GENWRAP
38 VARx(struct kevent *, kqueue_changes)
39 VARx(int, kqueue_changemax)
40 VARx(int, kqueue_changecnt)
41 VARx(struct kevent *, kqueue_events)
42 VARx(int, kqueue_eventmax)
43 #endif
44
45 #if EV_USE_PORT || EV_GENWRAP
46 VARx(struct port_event *, port_events)
47 VARx(int, port_eventmax)
48 #endif
49
50 VARx(ANFD *, anfds)
51 VARx(int, anfdmax)
52
53 VAR (pendings, ANPENDING *pendings [NUMPRI])
54 VAR (pendingmax, int pendingmax [NUMPRI])
55 VAR (pendingcnt, int pendingcnt [NUMPRI])
56
57 VARx(int *, fdchanges)
58 VARx(int, fdchangemax)
59 VARx(int, fdchangecnt)
60
61 VARx(struct ev_timer **, timers)
62 VARx(int, timermax)
63 VARx(int, timercnt)
64
65 #if EV_PERIODIC_ENABLE || EV_GENWRAP
66 VARx(struct ev_periodic **, periodics)
67 VARx(int, periodicmax)
68 VARx(int, periodiccnt)
69 #endif
70
71 VARx(struct ev_idle **, idles)
72 VARx(int, idlemax)
73 VARx(int, idlecnt)
74
75 VARx(struct ev_prepare **, prepares)
76 VARx(int, preparemax)
77 VARx(int, preparecnt)
78
79 VARx(struct ev_check **, checks)
80 VARx(int, checkmax)
81 VARx(int, checkcnt)
82
83 #if EV_FORK_ENABLE || EV_GENWRAP
84 VARx(struct ev_fork **, forks)
85 VARx(int, forkmax)
86 VARx(int, forkcnt)
87 #endif
88
89 #if EV_USE_INOTIFY || EV_GENWRAP
90 VARx(int, fs_fd)
91 VARx(ev_io, fs_w)
92 VAR (fs_hash, ANFS fs_hash [EV_INOTIFY_HASHSIZE])
93 #endif
94
95 #undef VARx
96