summaryrefslogtreecommitdiff
path: root/ev.c
diff options
context:
space:
mode:
authorroot <root>2007-10-31 21:34:45 +0000
committerroot <root>2007-10-31 21:34:45 +0000
commit5729d3bccbc199121ad453715d49f417aa932b00 (patch)
tree38705df4370daf452085d84931f94d87ccd101e9 /ev.c
parent2fde047707205b8d8f1c71482d2df57105217e17 (diff)
doh, forgot destructors
Diffstat (limited to 'ev.c')
-rw-r--r--ev.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/ev.c b/ev.c
index 8a09326..888c779 100644
--- a/ev.c
+++ b/ev.c
@@ -742,11 +742,16 @@ evio_start (struct ev_io *w)
++fdchangecnt;
array_needsize (fdchanges, fdchangemax, fdchangecnt, );
fdchanges [fdchangecnt - 1] = fd;
+
+ if (w->fd == 9)
+ printf ("start %p:%x\n", w, w->events);//D
}
void
evio_stop (struct ev_io *w)
{
+ if (w->fd == 9)
+ printf ("stop %p:%x\n", w, w->events);//D
ev_clear ((W)w);
if (!ev_is_active (w))
return;