]> git.ozlabs.org Git - ccan/blobdiff - ccan/io/test/run-15-timeout.c
io: change io_idle() to io_wait()
[ccan] / ccan / io / test / run-15-timeout.c
index a3e9526b165692ab8ae60b4e92e4a9adfcb14de2..2aceb2b5b26badb86aed5daba74bf9e1f8742f54 100644 (file)
@@ -23,7 +23,7 @@ static struct io_plan no_timeout(struct io_conn *conn, struct data *d)
 {
        ok1(d->state == 1);
        d->state++;
-       return io_close(conn, d);
+       return io_close();
 }
 
 static struct io_plan timeout(struct io_conn *conn, struct data *d)
@@ -31,14 +31,14 @@ static struct io_plan timeout(struct io_conn *conn, struct data *d)
        ok1(d->state == 1);
        d->state++;
        d->timed_out = true;
-       return io_close(conn, d);
+       return io_close();
 }
 
 static void finish_ok(struct io_conn *conn, struct data *d)
 {
        ok1(d->state == 2);
        d->state++;
-       io_break(d, io_idle());
+       io_break(d, io_never());
 }
 
 static void init_conn(int fd, struct data *d)