]> rtime.felk.cvut.cz Git - sojka/libev.git/blob - ev_vars.h
*** empty log message ***
[sojka/libev.git] / ev_vars.h
1 /*
2  * loop member variable declarations
3  *
4  * Copyright (c) 2007,2008,2009,2010,2011,2012 Marc Alexander Lehmann <libev@schmorp.de>
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without modifica-
8  * tion, are permitted provided that the following conditions are met:
9  *
10  *   1.  Redistributions of source code must retain the above copyright notice,
11  *       this list of conditions and the following disclaimer.
12  *
13  *   2.  Redistributions in binary form must reproduce the above copyright
14  *       notice, this list of conditions and the following disclaimer in the
15  *       documentation and/or other materials provided with the distribution.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
18  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MER-
19  * CHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO
20  * EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPE-
21  * CIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
22  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
23  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
24  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTH-
25  * ERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
26  * OF THE POSSIBILITY OF SUCH DAMAGE.
27  *
28  * Alternatively, the contents of this file may be used under the terms of
29  * the GNU General Public License ("GPL") version 2 or any later version,
30  * in which case the provisions of the GPL are applicable instead of
31  * the above. If you wish to allow the use of your version of this file
32  * only under the terms of the GPL and not to allow others to use your
33  * version of this file under the BSD license, indicate your decision
34  * by deleting the provisions above and replace them with the notice
35  * and other provisions required by the GPL. If you do not delete the
36  * provisions above, a recipient may use your version of this file under
37  * either the BSD or the GPL.
38  */
39
40 #define VARx(type,name) VAR(name, type name)
41
42 VARx(ev_tstamp, now_floor) /* last time we refreshed rt_time */
43 VARx(ev_tstamp, mn_now)    /* monotonic clock "now" */
44 VARx(ev_tstamp, rtmn_diff) /* difference realtime - monotonic time */
45
46 /* for reverse feeding of events */
47 VARx(W *, rfeeds)
48 VARx(int, rfeedmax)
49 VARx(int, rfeedcnt)
50
51 VAR (pendings, ANPENDING *pendings [NUMPRI])
52 VAR (pendingmax, int pendingmax [NUMPRI])
53 VAR (pendingcnt, int pendingcnt [NUMPRI])
54 VARx(int, pendingpri) /* highest priority currently pending */
55 VARx(ev_prepare, pending_w) /* dummy pending watcher */
56
57 VARx(ev_tstamp, io_blocktime)
58 VARx(ev_tstamp, timeout_blocktime)
59
60 VARx(int, backend)
61 VARx(int, activecnt) /* total number of active events ("refcount") */
62 VARx(EV_ATOMIC_T, loop_done)  /* signal by ev_break */
63
64 VARx(int, backend_fd)
65 VARx(ev_tstamp, backend_mintime) /* assumed typical timer resolution */
66 VAR (backend_modify, void (*backend_modify)(EV_P_ int fd, int oev, int nev))
67 VAR (backend_poll  , void (*backend_poll)(EV_P_ ev_tstamp timeout))
68
69 VARx(ANFD *, anfds)
70 VARx(int, anfdmax)
71
72 #if EV_USE_EVENTFD || EV_GENWRAP
73 VARx(int, evfd)
74 #endif
75 VAR (evpipe, int evpipe [2])
76 VARx(ev_io, pipe_w)
77 VARx(EV_ATOMIC_T, pipe_write_wanted)
78 VARx(EV_ATOMIC_T, pipe_write_skipped)
79
80 #if !defined(_WIN32) || EV_GENWRAP
81 VARx(pid_t, curpid)
82 #endif
83
84 VARx(char, postfork)  /* true if we need to recreate kernel state after fork */
85
86 #if EV_USE_SELECT || EV_GENWRAP
87 VARx(void *, vec_ri)
88 VARx(void *, vec_ro)
89 VARx(void *, vec_wi)
90 VARx(void *, vec_wo)
91 #if defined(_WIN32) || EV_GENWRAP
92 VARx(void *, vec_eo)
93 #endif
94 VARx(int, vec_max)
95 #endif
96
97 #if EV_USE_POLL || EV_GENWRAP
98 VARx(struct pollfd *, polls)
99 VARx(int, pollmax)
100 VARx(int, pollcnt)
101 VARx(int *, pollidxs) /* maps fds into structure indices */
102 VARx(int, pollidxmax)
103 #endif
104
105 #if EV_USE_EPOLL || EV_GENWRAP
106 VARx(struct epoll_event *, epoll_events)
107 VARx(int, epoll_eventmax)
108 VARx(int *, epoll_eperms)
109 VARx(int, epoll_epermcnt)
110 VARx(int, epoll_epermmax)
111 #endif
112
113 #if EV_USE_KQUEUE || EV_GENWRAP
114 VARx(pid_t, kqueue_fd_pid)
115 VARx(struct kevent *, kqueue_changes)
116 VARx(int, kqueue_changemax)
117 VARx(int, kqueue_changecnt)
118 VARx(struct kevent *, kqueue_events)
119 VARx(int, kqueue_eventmax)
120 #endif
121
122 #if EV_USE_PORT || EV_GENWRAP
123 VARx(struct port_event *, port_events)
124 VARx(int, port_eventmax)
125 #endif
126
127 #if EV_USE_IOCP || EV_GENWRAP
128 VARx(HANDLE, iocp)
129 #endif
130
131 VARx(int *, fdchanges)
132 VARx(int, fdchangemax)
133 VARx(int, fdchangecnt)
134
135 VARx(ANHE *, timers)
136 VARx(int, timermax)
137 VARx(int, timercnt)
138
139 #if EV_PERIODIC_ENABLE || EV_GENWRAP
140 VARx(ANHE *, periodics)
141 VARx(int, periodicmax)
142 VARx(int, periodiccnt)
143 #endif
144
145 #if EV_IDLE_ENABLE || EV_GENWRAP
146 VAR (idles, ev_idle **idles [NUMPRI])
147 VAR (idlemax, int idlemax [NUMPRI])
148 VAR (idlecnt, int idlecnt [NUMPRI])
149 #endif
150 VARx(int, idleall) /* total number */
151
152 VARx(struct ev_prepare **, prepares)
153 VARx(int, preparemax)
154 VARx(int, preparecnt)
155
156 VARx(struct ev_check **, checks)
157 VARx(int, checkmax)
158 VARx(int, checkcnt)
159
160 #if EV_FORK_ENABLE || EV_GENWRAP
161 VARx(struct ev_fork **, forks)
162 VARx(int, forkmax)
163 VARx(int, forkcnt)
164 #endif
165
166 #if EV_CLEANUP_ENABLE || EV_GENWRAP
167 VARx(struct ev_cleanup **, cleanups)
168 VARx(int, cleanupmax)
169 VARx(int, cleanupcnt)
170 #endif
171
172 #if EV_ASYNC_ENABLE || EV_GENWRAP
173 VARx(EV_ATOMIC_T, async_pending)
174 VARx(struct ev_async **, asyncs)
175 VARx(int, asyncmax)
176 VARx(int, asynccnt)
177 #endif
178
179 #if EV_USE_INOTIFY || EV_GENWRAP
180 VARx(int, fs_fd)
181 VARx(ev_io, fs_w)
182 VARx(char, fs_2625) /* whether we are running in linux 2.6.25 or newer */
183 VAR (fs_hash, ANFS fs_hash [EV_INOTIFY_HASHSIZE])
184 #endif
185
186 VARx(EV_ATOMIC_T, sig_pending)
187 #if EV_USE_SIGNALFD || EV_GENWRAP
188 VARx(int, sigfd)
189 VARx(ev_io, sigfd_w)
190 VARx(sigset_t, sigfd_set)
191 #endif
192
193 VARx(unsigned int, origflags) /* original loop flags */
194
195 #if EV_FEATURE_API || EV_GENWRAP
196 VARx(unsigned int, loop_count) /* total number of loop iterations/blocks */
197 VARx(unsigned int, loop_depth) /* #ev_run enters - #ev_run leaves */
198
199 VARx(void *, userdata)
200 VAR (release_cb, void (*release_cb)(EV_P) EV_THROW)
201 VAR (acquire_cb, void (*acquire_cb)(EV_P) EV_THROW)
202 VAR (invoke_cb , void (*invoke_cb) (EV_P))
203 #endif
204
205 #undef VARx
206