From 7388b2555f954bae982ea70c7f27ce0183072044 Mon Sep 17 00:00:00 2001 From: root Date: Mon, 28 Jan 2008 12:13:54 +0000 Subject: *** empty log message *** --- ev.pod | 22 ++++++++++------------ 1 file changed, 10 insertions(+), 12 deletions(-) (limited to 'ev.pod') 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