ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/libev/ev++.h
(Generate patch)

Comparing libev/ev++.h (file contents):
Revision 1.27 by llucax, Fri Jan 18 18:14:23 2008 UTC vs.
Revision 1.38 by root, Mon Jan 28 11:43:37 2008 UTC

44# include EV_H 44# include EV_H
45#else 45#else
46# include "ev.h" 46# include "ev.h"
47#endif 47#endif
48 48
49#ifndef EV_USE_STDEXCEPT
50# define EV_USE_STDEXCEPT 1
51#endif
52
53#if EV_USE_STDEXCEPT
54# include <stdexcept>
55#endif
56
49namespace ev { 57namespace ev {
50 58
51 typedef ev_tstamp tstamp; 59 typedef ev_tstamp tstamp;
52 60
53 enum { 61 enum {
91 { 99 {
92 ONE = EVUNLOOP_ONE, 100 ONE = EVUNLOOP_ONE,
93 ALL = EVUNLOOP_ALL 101 ALL = EVUNLOOP_ALL
94 }; 102 };
95 103
104 struct bad_loop
105#if EV_USE_STDEXCEPT
106 : std::runtime_error
107#endif
108 {
109#if EV_USE_STDEXCEPT
110 bad_loop ()
111 : std::runtime_error ("libev event loop cannot be initialized, bad value of LIBEV_FLAGS?")
112 {
113 }
114#endif
115 };
116
117#ifdef EV_AX
118# undef EV_AX
119#endif
120
121#ifdef EV_AX_
122# undef EV_AX_
123#endif
124
125#if EV_MULTIPLICITY
126# define EV_AX raw_loop
127# define EV_AX_ raw_loop,
128#else
129# define EV_AX
130# define EV_AX_
131#endif
132
133 struct loop_ref
134 {
135 loop_ref (EV_P) throw ()
136#if EV_MULTIPLICITY
137 : EV_AX (EV_A)
138#endif
139 {
140 }
141
142 bool operator == (const loop_ref &other) const throw ()
143 {
144#if EV_MULTIPLICITY
145 return EV_AX == other.EV_AX;
146#else
147 return true;
148#endif
149 }
150
151 bool operator != (const loop_ref &other) const throw ()
152 {
153#if EV_MULTIPLICITY
154 return ! (*this == other);
155#else
156 return false;
157#endif
158 }
159
160#if EV_MULTIPLICITY
161 bool operator == (struct ev_loop *other) const throw ()
162 {
163 return this->EV_AX == other;
164 }
165
166 bool operator != (struct ev_loop *other) const throw ()
167 {
168 return ! (*this == other);
169 }
170
171 bool operator == (const struct ev_loop *other) const throw ()
172 {
173 return this->EV_AX == other;
174 }
175
176 bool operator != (const struct ev_loop *other) const throw ()
177 {
178 return (*this == other);
179 }
180
181 operator struct ev_loop * () const throw ()
182 {
183 return EV_AX;
184 }
185
186 operator const struct ev_loop * () const throw ()
187 {
188 return EV_AX;
189 }
190
191 bool is_default () const throw ()
192 {
193 return EV_AX == ev_default_loop (0);
194 }
195#endif
196
197 void loop (int flags = 0)
198 {
199 ev_loop (EV_AX_ flags);
200 }
201
202 void unloop (how_t how = ONE) throw ()
203 {
204 ev_unloop (EV_AX_ how);
205 }
206
207 void post_fork () throw ()
208 {
209#if EV_MULTIPLICITY
210 ev_loop_fork (EV_AX);
211#else
212 ev_default_fork ();
213#endif
214 }
215
216 unsigned int count () const throw ()
217 {
218 return ev_loop_count (EV_AX);
219 }
220
221 unsigned int backend () const throw ()
222 {
223 return ev_backend (EV_AX);
224 }
225
226 tstamp now () const throw ()
227 {
228 return ev_now (EV_AX);
229 }
230
231 void ref () throw ()
232 {
233 ev_ref (EV_AX);
234 }
235
236 void unref () throw ()
237 {
238 ev_unref (EV_AX);
239 }
240
241 void set_io_collect_interval (tstamp interval) throw ()
242 {
243 ev_set_io_collect_interval (EV_AX_ interval);
244 }
245
246 void set_timeout_collect_interval (tstamp interval) throw ()
247 {
248 ev_set_timeout_collect_interval (EV_AX_ interval);
249 }
250
251 // function callback
252 void once (int fd, int events, tstamp timeout, void (*cb)(int, void *), void* arg = 0) throw ()
253 {
254 ev_once (EV_AX_ fd, events, timeout, cb, arg);
255 }
256
257 // method callback
258 template<class K, void (K::*method)(int)>
259 void once (int fd, int events, tstamp timeout, K *object) throw ()
260 {
261 once (fd, events, timeout, method_thunk<K, method>, object);
262 }
263
264 template<class K, void (K::*method)(int)>
265 static void method_thunk (int revents, void* arg)
266 {
267 K *obj = static_cast<K *>(arg);
268 (obj->*method) (revents);
269 }
270
271 // const method callback
272 template<class K, void (K::*method)(int) const>
273 void once (int fd, int events, tstamp timeout, const K *object) throw ()
274 {
275 once (fd, events, timeout, const_method_thunk<K, method>, object);
276 }
277
278 template<class K, void (K::*method)(int) const>
279 static void const_method_thunk (int revents, void* arg)
280 {
281 K *obj = static_cast<K *>(arg);
282 (obj->*method) (revents);
283 }
284
285 // simple method callback
286 template<class K, void (K::*method)()>
287 void once (int fd, int events, tstamp timeout, K *object) throw ()
288 {
289 once (fd, events, timeout, method_noargs_thunk<K, method>, object);
290 }
291
292 template<class K, void (K::*method)()>
293 static void method_noargs_thunk (int revents, void* arg)
294 {
295 K *obj = static_cast<K *>(arg);
296 (obj->*method) ();
297 }
298
299 // simpler function callback
300 template<void (*cb)(int)>
301 void once (int fd, int events, tstamp timeout) throw ()
302 {
303 once (fd, events, timeout, simpler_func_thunk<cb>);
304 }
305
306 template<void (*cb)(int)>
307 static void simpler_func_thunk (int revents, void* arg)
308 {
309 (*cb) (revents);
310 }
311
312 // simplest function callback
313 template<void (*cb)()>
314 void once (int fd, int events, tstamp timeout) throw ()
315 {
316 once (fd, events, timeout, simplest_func_thunk<cb>);
317 }
318
319 template<void (*cb)()>
320 static void simplest_func_thunk (int revents, void* arg)
321 {
322 (*cb) ();
323 }
324
325 void feed_fd_event (int fd, int revents) throw ()
326 {
327 ev_feed_fd_event (EV_AX_ fd, revents);
328 }
329
330 void feed_signal_event (int signum) throw ()
331 {
332 ev_feed_signal_event (EV_AX_ signum);
333 }
334
335#if EV_MULTIPLICITY
336 struct ev_loop* EV_AX;
337#endif
338
339 };
340
341#if EV_MULTIPLICITY
342 struct dynamic_loop : loop_ref
343 {
344
345 dynamic_loop (unsigned int flags = AUTO) throw (bad_loop)
346 : loop_ref (ev_loop_new (flags))
347 {
348 if (!EV_AX)
349 throw bad_loop ();
350 }
351
352 ~dynamic_loop () throw ()
353 {
354 ev_loop_destroy (EV_AX);
355 EV_AX = 0;
356 }
357
358 private:
359
360 dynamic_loop (const dynamic_loop &);
361
362 dynamic_loop & operator= (const dynamic_loop &);
363
364 };
365#endif
366
367 struct default_loop : loop_ref
368 {
369 default_loop (unsigned int flags = AUTO) throw (bad_loop)
370#if EV_MULTIPLICITY
371 : loop_ref (ev_default_loop (flags))
372#endif
373 {
374 if (
375#if EV_MULTIPLICITY
376 !EV_AX
377#else
378 !ev_default_loop (flags)
379#endif
380 )
381 throw bad_loop ();
382 }
383
384 ~default_loop () throw ()
385 {
386 ev_default_destroy ();
387 }
388
389 private:
390 default_loop (const default_loop &);
391 default_loop &operator = (const default_loop &);
392 };
393
394 inline loop_ref get_default_loop () throw ()
395 {
396#if EV_MULTIPLICITY
397 return ev_default_loop (0);
398#else
399 return loop_ref ();
400#endif
401 }
402
403#undef EV_AX
404#undef EV_AX_
405
406#undef EV_PX
407#undef EV_PX_
408#if EV_MULTIPLICITY
409# define EV_PX loop_ref EV_A
410# define EV_PX_ loop_ref EV_A_
411#else
412# define EV_PX
413# define EV_PX_
414#endif
415
96 template<class ev_watcher, class watcher> 416 template<class ev_watcher, class watcher>
97 struct base : ev_watcher 417 struct base : ev_watcher
98 { 418 {
99 #if EV_MULTIPLICITY 419 #if EV_MULTIPLICITY
100 EV_P; 420 EV_PX;
101 421
102 void set (EV_P) 422 void set (EV_PX) throw ()
103 { 423 {
104 this->EV_A = EV_A; 424 this->EV_A = EV_A;
105 } 425 }
106 #endif 426 #endif
107 427
108 base () 428 base (EV_PX) throw ()
429 #if EV_MULTIPLICITY
430 : EV_A (EV_A)
431 #endif
109 { 432 {
110 ev_init (this, 0); 433 ev_init (this, 0);
111 } 434 }
112 435
113 void set_ (void *data, void (*cb)(EV_P_ ev_watcher *w, int revents)) 436 void set_ (void *data, void (*cb)(EV_P_ ev_watcher *w, int revents)) throw ()
114 { 437 {
115 this->data = data; 438 this->data = data;
116 ev_set_cb (static_cast<ev_watcher *>(this), cb); 439 ev_set_cb (static_cast<ev_watcher *>(this), cb);
117 } 440 }
118 441
119 // method callback 442 // method callback
120 template<class K, void (K::*method)(watcher &w, int)> 443 template<class K, void (K::*method)(watcher &w, int)>
121 void set (K *object) 444 void set (K *object) throw ()
122 { 445 {
123 set_ (object, method_thunk<K, method>); 446 set_ (object, method_thunk<K, method>);
124 } 447 }
125 448
126 template<class K, void (K::*method)(watcher &w, int)> 449 template<class K, void (K::*method)(watcher &w, int)>
130 (obj->*method) (*static_cast<watcher *>(w), revents); 453 (obj->*method) (*static_cast<watcher *>(w), revents);
131 } 454 }
132 455
133 // const method callback 456 // const method callback
134 template<class K, void (K::*method)(watcher &w, int) const> 457 template<class K, void (K::*method)(watcher &w, int) const>
135 void set (const K *object) 458 void set (const K *object) throw ()
136 { 459 {
137 set_ (object, const_method_thunk<K, method>); 460 set_ (object, const_method_thunk<K, method>);
138 } 461 }
139 462
140 template<class K, void (K::*method)(watcher &w, int) const> 463 template<class K, void (K::*method)(watcher &w, int) const>
144 (static_cast<K *>(w->data)->*method) (*static_cast<watcher *>(w), revents); 467 (static_cast<K *>(w->data)->*method) (*static_cast<watcher *>(w), revents);
145 } 468 }
146 469
147 // function callback 470 // function callback
148 template<void (*function)(watcher &w, int)> 471 template<void (*function)(watcher &w, int)>
149 void set (void *data = 0) 472 void set (void *data = 0) throw ()
150 { 473 {
151 set_ (data, function_thunk<function>); 474 set_ (data, function_thunk<function>);
152 } 475 }
153 476
154 template<void (*function)(watcher &w, int)> 477 template<void (*function)(watcher &w, int)>
157 function (*static_cast<watcher *>(w), revents); 480 function (*static_cast<watcher *>(w), revents);
158 } 481 }
159 482
160 // simple callback 483 // simple callback
161 template<class K, void (K::*method)()> 484 template<class K, void (K::*method)()>
162 void set (K *object) 485 void set (K *object) throw ()
163 { 486 {
164 set_ (object, method_noargs_thunk<K, method>); 487 set_ (object, method_noargs_thunk<K, method>);
165 } 488 }
166 489
167 template<class K, void (K::*method)()> 490 template<class K, void (K::*method)()>
175 { 498 {
176 return ev_cb (static_cast<ev_watcher *>(this)) 499 return ev_cb (static_cast<ev_watcher *>(this))
177 (static_cast<ev_watcher *>(this), events); 500 (static_cast<ev_watcher *>(this), events);
178 } 501 }
179 502
180 bool is_active () const 503 bool is_active () const throw ()
181 { 504 {
182 return ev_is_active (static_cast<const ev_watcher *>(this)); 505 return ev_is_active (static_cast<const ev_watcher *>(this));
183 } 506 }
184 507
185 bool is_pending () const 508 bool is_pending () const throw ()
186 { 509 {
187 return ev_is_pending (static_cast<const ev_watcher *>(this)); 510 return ev_is_pending (static_cast<const ev_watcher *>(this));
188 } 511 }
189 512
190 void feed_event (int revents) 513 void feed_event (int revents) throw ()
191 { 514 {
192 ev_feed_event (EV_A_ static_cast<const ev_watcher *>(this), revents); 515 ev_feed_event (EV_A_ static_cast<const ev_watcher *>(this), revents);
193 } 516 }
194 }; 517 };
195 518
519 inline tstamp now () throw ()
520 {
521 return ev_time ();
522 }
523
196 inline void delay (tstamp interval) 524 inline void delay (tstamp interval) throw ()
197 { 525 {
198 ev_sleep (interval); 526 ev_sleep (interval);
199 } 527 }
200 528
201 inline int version_major () 529 inline int version_major () throw ()
202 { 530 {
203 return ev_version_major (); 531 return ev_version_major ();
204 } 532 }
205 533
206 inline int version_minor () 534 inline int version_minor () throw ()
207 { 535 {
208 return ev_version_minor (); 536 return ev_version_minor ();
209 } 537 }
210 538
211 inline unsigned int supported_backends () 539 inline unsigned int supported_backends () throw ()
212 { 540 {
213 return ev_supported_backends (); 541 return ev_supported_backends ();
214 } 542 }
215 543
216 inline unsigned int recommended_backends () 544 inline unsigned int recommended_backends () throw ()
217 { 545 {
218 return ev_recommended_backends (); 546 return ev_recommended_backends ();
219 } 547 }
220 548
221 inline unsigned int embeddable_backends () 549 inline unsigned int embeddable_backends () throw ()
222 { 550 {
223 return ev_embeddable_backends (); 551 return ev_embeddable_backends ();
224 } 552 }
225 553
226 inline void set_allocator (void *(*cb)(void *ptr, long size)) 554 inline void set_allocator (void *(*cb)(void *ptr, long size)) throw ()
227 { 555 {
228 ev_set_allocator (cb); 556 ev_set_allocator (cb);
229 } 557 }
230 558
231 inline void set_syserr_cb (void (*cb)(const char *msg)) 559 inline void set_syserr_cb (void (*cb)(const char *msg)) throw ()
232 { 560 {
233 ev_set_syserr_cb (cb); 561 ev_set_syserr_cb (cb);
234 } 562 }
235 563
236
237 inline ev_tstamp now (EV_P)
238 {
239 return ev_now (EV_A);
240 }
241
242 #if EV_MULTIPLICITY 564 #if EV_MULTIPLICITY
243 #define EV_CONSTRUCT \ 565 #define EV_CONSTRUCT(cppstem,cstem) \
244 (EV_P = EV_DEFAULT) \ 566 (EV_PX = get_default_loop ()) throw () \
567 : base<ev_ ## cstem, cppstem> (EV_A) \
245 { \ 568 { \
246 set (EV_A); \
247 } 569 }
248 #else 570 #else
249 #define EV_CONSTRUCT \ 571 #define EV_CONSTRUCT(cppstem,cstem) \
250 () \ 572 () throw () \
251 { \ 573 { \
252 } 574 }
253 #endif 575 #endif
254 576
255 /* using a template here would require quite a bit more lines, 577 /* using a template here would require quite a bit more lines,
256 * so a macro solution was chosen */ 578 * so a macro solution was chosen */
257 #define EV_BEGIN_WATCHER(cppstem,cstem) \ 579 #define EV_BEGIN_WATCHER(cppstem,cstem) \
258 \ 580 \
259 struct cppstem : base<ev_ ## cstem, cppstem> \ 581 struct cppstem : base<ev_ ## cstem, cppstem> \
260 { \ 582 { \
261 void start () \ 583 void start () throw () \
262 { \ 584 { \
263 ev_ ## cstem ## _start (EV_A_ static_cast<ev_ ## cstem *>(this)); \ 585 ev_ ## cstem ## _start (EV_A_ static_cast<ev_ ## cstem *>(this)); \
264 } \ 586 } \
265 \ 587 \
266 void stop () \ 588 void stop () throw () \
267 { \ 589 { \
268 ev_ ## cstem ## _stop (EV_A_ static_cast<ev_ ## cstem *>(this)); \ 590 ev_ ## cstem ## _stop (EV_A_ static_cast<ev_ ## cstem *>(this)); \
269 } \ 591 } \
270 \ 592 \
271 cppstem EV_CONSTRUCT \ 593 cppstem EV_CONSTRUCT(cppstem,cstem) \
272 \ 594 \
273 ~cppstem () \ 595 ~cppstem () throw () \
274 { \ 596 { \
275 stop (); \ 597 stop (); \
276 } \ 598 } \
277 \ 599 \
278 using base<ev_ ## cstem, cppstem>::set; \ 600 using base<ev_ ## cstem, cppstem>::set; \
287 609
288 #define EV_END_WATCHER(cppstem,cstem) \ 610 #define EV_END_WATCHER(cppstem,cstem) \
289 }; 611 };
290 612
291 EV_BEGIN_WATCHER (io, io) 613 EV_BEGIN_WATCHER (io, io)
292 void set (int fd, int events) 614 void set (int fd, int events) throw ()
293 { 615 {
294 int active = is_active (); 616 int active = is_active ();
295 if (active) stop (); 617 if (active) stop ();
296 ev_io_set (static_cast<ev_io *>(this), fd, events); 618 ev_io_set (static_cast<ev_io *>(this), fd, events);
297 if (active) start (); 619 if (active) start ();
298 } 620 }
299 621
300 void set (int events) 622 void set (int events) throw ()
301 { 623 {
302 int active = is_active (); 624 int active = is_active ();
303 if (active) stop (); 625 if (active) stop ();
304 ev_io_set (static_cast<ev_io *>(this), fd, events); 626 ev_io_set (static_cast<ev_io *>(this), fd, events);
305 if (active) start (); 627 if (active) start ();
306 } 628 }
307 629
308 void start (int fd, int events) 630 void start (int fd, int events) throw ()
309 { 631 {
310 set (fd, events); 632 set (fd, events);
311 start (); 633 start ();
312 } 634 }
313 EV_END_WATCHER (io, io) 635 EV_END_WATCHER (io, io)
314 636
315 EV_BEGIN_WATCHER (timer, timer) 637 EV_BEGIN_WATCHER (timer, timer)
316 void set (ev_tstamp after, ev_tstamp repeat = 0.) 638 void set (ev_tstamp after, ev_tstamp repeat = 0.) throw ()
317 { 639 {
318 int active = is_active (); 640 int active = is_active ();
319 if (active) stop (); 641 if (active) stop ();
320 ev_timer_set (static_cast<ev_timer *>(this), after, repeat); 642 ev_timer_set (static_cast<ev_timer *>(this), after, repeat);
321 if (active) start (); 643 if (active) start ();
322 } 644 }
323 645
324 void start (ev_tstamp after, ev_tstamp repeat = 0.) 646 void start (ev_tstamp after, ev_tstamp repeat = 0.) throw ()
325 { 647 {
326 set (after, repeat); 648 set (after, repeat);
327 start (); 649 start ();
328 } 650 }
329 651
330 void again () 652 void again () throw ()
331 { 653 {
332 ev_timer_again (EV_A_ static_cast<ev_timer *>(this)); 654 ev_timer_again (EV_A_ static_cast<ev_timer *>(this));
333 } 655 }
334 EV_END_WATCHER (timer, timer) 656 EV_END_WATCHER (timer, timer)
335 657
336 #if EV_PERIODIC_ENABLE 658 #if EV_PERIODIC_ENABLE
337 EV_BEGIN_WATCHER (periodic, periodic) 659 EV_BEGIN_WATCHER (periodic, periodic)
338 void set (ev_tstamp at, ev_tstamp interval = 0.) 660 void set (ev_tstamp at, ev_tstamp interval = 0.) throw ()
339 { 661 {
340 int active = is_active (); 662 int active = is_active ();
341 if (active) stop (); 663 if (active) stop ();
342 ev_periodic_set (static_cast<ev_periodic *>(this), at, interval, 0); 664 ev_periodic_set (static_cast<ev_periodic *>(this), at, interval, 0);
343 if (active) start (); 665 if (active) start ();
344 } 666 }
345 667
346 void start (ev_tstamp at, ev_tstamp interval = 0.) 668 void start (ev_tstamp at, ev_tstamp interval = 0.) throw ()
347 { 669 {
348 set (at, interval); 670 set (at, interval);
349 start (); 671 start ();
350 } 672 }
351 673
352 void again () 674 void again () throw ()
353 { 675 {
354 ev_periodic_again (EV_A_ static_cast<ev_periodic *>(this)); 676 ev_periodic_again (EV_A_ static_cast<ev_periodic *>(this));
355 } 677 }
356 EV_END_WATCHER (periodic, periodic) 678 EV_END_WATCHER (periodic, periodic)
357 #endif 679 #endif
358 680
359 EV_BEGIN_WATCHER (sig, signal) 681 EV_BEGIN_WATCHER (sig, signal)
360 void set (int signum) 682 void set (int signum) throw ()
361 { 683 {
362 int active = is_active (); 684 int active = is_active ();
363 if (active) stop (); 685 if (active) stop ();
364 ev_signal_set (static_cast<ev_signal *>(this), signum); 686 ev_signal_set (static_cast<ev_signal *>(this), signum);
365 if (active) start (); 687 if (active) start ();
366 } 688 }
367 689
368 void start (int signum) 690 void start (int signum) throw ()
369 { 691 {
370 set (signum); 692 set (signum);
371 start (); 693 start ();
372 } 694 }
373 EV_END_WATCHER (sig, signal) 695 EV_END_WATCHER (sig, signal)
374 696
375 EV_BEGIN_WATCHER (child, child) 697 EV_BEGIN_WATCHER (child, child)
376 void set (int pid) 698 void set (int pid, int trace = 0) throw ()
377 { 699 {
378 int active = is_active (); 700 int active = is_active ();
379 if (active) stop (); 701 if (active) stop ();
380 ev_child_set (static_cast<ev_child *>(this), pid); 702 ev_child_set (static_cast<ev_child *>(this), pid, trace);
381 if (active) start (); 703 if (active) start ();
382 } 704 }
383 705
384 void start (int pid) 706 void start (int pid, int trace = 0) throw ()
385 { 707 {
386 set (pid); 708 set (pid, trace);
387 start (); 709 start ();
388 } 710 }
389 EV_END_WATCHER (child, child) 711 EV_END_WATCHER (child, child)
390 712
391 #if EV_STAT_ENABLE 713 #if EV_STAT_ENABLE
392 EV_BEGIN_WATCHER (stat, stat) 714 EV_BEGIN_WATCHER (stat, stat)
393 void set (const char *path, ev_tstamp interval = 0.) 715 void set (const char *path, ev_tstamp interval = 0.) throw ()
394 { 716 {
395 int active = is_active (); 717 int active = is_active ();
396 if (active) stop (); 718 if (active) stop ();
397 ev_stat_set (static_cast<ev_stat *>(this), path, interval); 719 ev_stat_set (static_cast<ev_stat *>(this), path, interval);
398 if (active) start (); 720 if (active) start ();
399 } 721 }
400 722
401 void start (const char *path, ev_tstamp interval = 0.) 723 void start (const char *path, ev_tstamp interval = 0.) throw ()
402 { 724 {
403 stop (); 725 stop ();
404 set (path, interval); 726 set (path, interval);
405 start (); 727 start ();
406 } 728 }
407 729
408 void update () 730 void update () throw ()
409 { 731 {
410 ev_stat_stat (EV_A_ static_cast<ev_stat *>(this)); 732 ev_stat_stat (EV_A_ static_cast<ev_stat *>(this));
411 } 733 }
412 EV_END_WATCHER (stat, stat) 734 EV_END_WATCHER (stat, stat)
413 #endif 735 #endif
414 736
415 EV_BEGIN_WATCHER (idle, idle) 737 EV_BEGIN_WATCHER (idle, idle)
416 void set () { } 738 void set () throw () { }
417 EV_END_WATCHER (idle, idle) 739 EV_END_WATCHER (idle, idle)
418 740
419 EV_BEGIN_WATCHER (prepare, prepare) 741 EV_BEGIN_WATCHER (prepare, prepare)
420 void set () { } 742 void set () throw () { }
421 EV_END_WATCHER (prepare, prepare) 743 EV_END_WATCHER (prepare, prepare)
422 744
423 EV_BEGIN_WATCHER (check, check) 745 EV_BEGIN_WATCHER (check, check)
424 void set () { } 746 void set () throw () { }
425 EV_END_WATCHER (check, check) 747 EV_END_WATCHER (check, check)
426 748
427 #if EV_EMBED_ENABLE 749 #if EV_EMBED_ENABLE
428 EV_BEGIN_WATCHER (embed, embed) 750 EV_BEGIN_WATCHER (embed, embed)
429 void start (struct ev_loop *embedded_loop) 751 void start (struct ev_loop *embedded_loop) throw ()
430 { 752 {
431 stop (); 753 stop ();
432 ev_embed_set (static_cast<ev_embed *>(this), embedded_loop); 754 ev_embed_set (static_cast<ev_embed *>(this), embedded_loop);
433 start (); 755 start ();
434 } 756 }
440 EV_END_WATCHER (embed, embed) 762 EV_END_WATCHER (embed, embed)
441 #endif 763 #endif
442 764
443 #if EV_FORK_ENABLE 765 #if EV_FORK_ENABLE
444 EV_BEGIN_WATCHER (fork, fork) 766 EV_BEGIN_WATCHER (fork, fork)
445 void set () { } 767 void set () throw () { }
446 EV_END_WATCHER (fork, fork) 768 EV_END_WATCHER (fork, fork)
447 #endif 769 #endif
448 770
771 #undef EV_PX
772 #undef EV_PX_
449 #undef EV_CONSTRUCT 773 #undef EV_CONSTRUCT
450 #undef EV_BEGIN_WATCHER 774 #undef EV_BEGIN_WATCHER
451 #undef EV_END_WATCHER 775 #undef EV_END_WATCHER
452} 776}
453 777

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines