]> git.ozlabs.org Git - ccan/blobdiff - ccan/io/test/run-06-idle.c
io: change io_idle() to io_wait()
[ccan] / ccan / io / test / run-06-idle.c
index 51cca961a077416c47287a5b78d697cd5513d554..82f6e0af6851af408a9741c1e9a42fb04da95792 100644 (file)
@@ -29,7 +29,7 @@ static struct io_plan read_done(struct io_conn *conn, struct data *d)
 
 static void finish_waker(struct io_conn *conn, struct data *d)
 {
-       io_wake(idler, io_read(d->buf, sizeof(d->buf), read_done, d));
+       io_wake(d);
        ok1(d->state == 1);
        d->state++;
 }
@@ -38,7 +38,7 @@ static void finish_idle(struct io_conn *conn, struct data *d)
 {
        ok1(d->state == 3);
        d->state++;
-       io_break(d, io_idle());
+       io_break(d, io_never());
 }
 
 static struct io_plan never(struct io_conn *conn, void *arg)
@@ -46,13 +46,18 @@ static struct io_plan never(struct io_conn *conn, void *arg)
        abort();
 }
 
+static struct io_plan read_buf(struct io_conn *conn, struct data *d)
+{
+       return io_read(d->buf, sizeof(d->buf), read_done, d);
+}
+
 static void init_conn(int fd, struct data *d)
 {
        int fd2;
 
        ok1(d->state == 0);
        d->state++;
-       idler = io_new_conn(fd, io_idle());
+       idler = io_new_conn(fd, io_wait(d, read_buf, d));
        io_set_finish(idler, finish_idle, d);
 
        /* This will wake us up, as read will fail. */