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

Comparing libev/ev++.h (file contents):
Revision 1.57 by root, Wed Feb 16 08:02:50 2011 UTC vs.
Revision 1.61 by root, Sun Jun 24 14:30:40 2012 UTC

284 } 284 }
285 285
286 template<class K, void (K::*method)(int)> 286 template<class K, void (K::*method)(int)>
287 static void method_thunk (int revents, void *arg) 287 static void method_thunk (int revents, void *arg)
288 { 288 {
289 static_cast<K *>(arg)->*method 289 (static_cast<K *>(arg)->*method)
290 (revents); 290 (revents);
291 } 291 }
292 292
293 // no-argument method callback 293 // no-argument method callback
294 template<class K, void (K::*method)()> 294 template<class K, void (K::*method)()>
298 } 298 }
299 299
300 template<class K, void (K::*method)()> 300 template<class K, void (K::*method)()>
301 static void method_noargs_thunk (int revents, void *arg) 301 static void method_noargs_thunk (int revents, void *arg)
302 { 302 {
303 static_cast<K *>(arg)->*method 303 (static_cast<K *>(arg)->*method)
304 (); 304 ();
305 } 305 }
306 306
307 // simpler function callback 307 // simpler function callback
308 template<void (*cb)(int)> 308 template<void (*cb)(int)>
511 return ev_is_pending (static_cast<const ev_watcher *>(this)); 511 return ev_is_pending (static_cast<const ev_watcher *>(this));
512 } 512 }
513 513
514 void feed_event (int revents) throw () 514 void feed_event (int revents) throw ()
515 { 515 {
516 ev_feed_event (EV_A_ static_cast<const ev_watcher *>(this), revents); 516 ev_feed_event (EV_A_ static_cast<ev_watcher *>(this), revents);
517 } 517 }
518 }; 518 };
519 519
520 inline tstamp now () throw () 520 inline tstamp now (EV_P) throw ()
521 { 521 {
522 return ev_time (); 522 return ev_now (EV_A);
523 } 523 }
524 524
525 inline void delay (tstamp interval) throw () 525 inline void delay (tstamp interval) throw ()
526 { 526 {
527 ev_sleep (interval); 527 ev_sleep (interval);
550 inline unsigned int embeddable_backends () throw () 550 inline unsigned int embeddable_backends () throw ()
551 { 551 {
552 return ev_embeddable_backends (); 552 return ev_embeddable_backends ();
553 } 553 }
554 554
555 inline void set_allocator (void *(*cb)(void *ptr, long size)) throw () 555 inline void set_allocator (void *(*cb)(void *ptr, long size) throw ()) throw ()
556 { 556 {
557 ev_set_allocator (cb); 557 ev_set_allocator (cb);
558 } 558 }
559 559
560 inline void set_syserr_cb (void (*cb)(const char *msg)) throw () 560 inline void set_syserr_cb (void (*cb)(const char *msg) throw ()) throw ()
561 { 561 {
562 ev_set_syserr_cb (cb); 562 ev_set_syserr_cb (cb);
563 } 563 }
564 564
565 #if EV_MULTIPLICITY 565 #if EV_MULTIPLICITY
762 EV_END_WATCHER (check, check) 762 EV_END_WATCHER (check, check)
763 #endif 763 #endif
764 764
765 #if EV_EMBED_ENABLE 765 #if EV_EMBED_ENABLE
766 EV_BEGIN_WATCHER (embed, embed) 766 EV_BEGIN_WATCHER (embed, embed)
767 void set (struct ev_loop *embedded_loop) throw () 767 void set_embed (struct ev_loop *embedded_loop) throw ()
768 { 768 {
769 int active = is_active (); 769 int active = is_active ();
770 if (active) stop (); 770 if (active) stop ();
771 ev_embed_set (static_cast<ev_embed *>(this), embedded_loop); 771 ev_embed_set (static_cast<ev_embed *>(this), embedded_loop);
772 if (active) start (); 772 if (active) start ();

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines