From 7388b2555f954bae982ea70c7f27ce0183072044 Mon Sep 17 00:00:00 2001 From: root Date: Mon, 28 Jan 2008 12:13:54 +0000 Subject: *** empty log message *** --- Changes | 1 + ev.pod | 22 ++++++++++------------ 2 files changed, 11 insertions(+), 12 deletions(-) diff --git a/Changes b/Changes index d25724a..3ce2451 100644 --- a/Changes +++ b/Changes @@ -7,6 +7,7 @@ Revision history for libev, a high-performance and full-featured event loop - speed up signal detection after a fork. - only optionally return trace status changed in ev_child watchers. + - experimental (and undocumented) loop wrappers for ev++.h. 2.01 Tue Dec 25 08:04:41 CET 2007 - separate Changes file. diff --git a/ev.pod b/ev.pod index 3e2060e..ff63696 100644 --- a/ev.pod +++ b/ev.pod @@ -1697,7 +1697,7 @@ callback, free it. Also, use no error checking, as usual. { free (w); // now do something you wanted to do when the program has - // no longer asnything immediate to do. + // no longer anything immediate to do. } struct ev_idle *idle_watcher = malloc (sizeof (struct ev_idle)); @@ -2284,19 +2284,17 @@ the constructor. class myclass { - ev_io io; void io_cb (ev::io &w, int revents); - ev_idle idle void idle_cb (ev::idle &w, int revents); + ev::io io; void io_cb (ev::io &w, int revents); + ev:idle idle void idle_cb (ev::idle &w, int revents); - myclass (); - } - - myclass::myclass (int fd) - { - io .set (this); - idle.set (this); + myclass (int fd) + { + io .set (this); + idle.set (this); - io.start (fd, ev::READ); - } + io.start (fd, ev::READ); + } + }; =head1 MACRO MAGIC -- cgit v1.2.3