X-Git-Url: http://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=ccan%2Fio%2Ftest%2Frun-06-idle.c;h=d75a216db6a48d5cbc68aa6a093e4ba7c0496c77;hp=c5fab50b023b9f1cee6965e9b0541303d8a905fa;hb=109f8003b603675aec35e5b1fc678ee363e2f30c;hpb=733b09fa8b6083949ff62795e54851aa282d510c diff --git a/ccan/io/test/run-06-idle.c b/ccan/io/test/run-06-idle.c index c5fab50b..d75a216d 100644 --- a/ccan/io/test/run-06-idle.c +++ b/ccan/io/test/run-06-idle.c @@ -16,49 +16,44 @@ struct data { char buf[4]; }; -static struct io_plan plan_read(struct io_conn *conn, struct data *d) +static struct io_plan read_done(struct io_conn *conn, struct data *d) { ok1(d->state == 2 || d->state == 3); d->state++; - return io_read(d->buf, sizeof(d->buf), io_close, d); + return io_close(conn, NULL); } -static struct io_plan start_waker(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)); ok1(d->state == 1); d->state++; - - io_wake(idler, plan_read, d); - return io_close(conn, NULL); } -static void finish_waker(struct io_conn *conn, struct data *d) +static void finish_idle(struct io_conn *conn, struct data *d) { - ok1(d->state == 2 || d->state == 3); + ok1(d->state == 3); d->state++; + io_break(d, io_idle()); } -static struct io_plan start_idle(struct io_conn *conn, struct data *d) +static struct io_plan never(struct io_conn *conn, void *arg) { - int fd; - - ok1(d->state == 0); - d->state++; - idler = conn; - - /* This will wake us up. */ - fd = open("/dev/null", O_RDONLY); - ok1(fd >= 0); - ok1(io_new_conn(fd, start_waker, finish_waker, d)); - - return io_idle(); + abort(); } -static void finish_idle(struct io_conn *conn, struct data *d) +static void init_conn(int fd, struct data *d) { - ok1(d->state == 4); + int fd2; + + ok1(d->state == 0); d->state++; - io_break(d, NULL, NULL); + idler = io_new_conn(fd, io_idle(), finish_idle, d); + + /* This will wake us up, as read will fail. */ + fd2 = open("/dev/null", O_RDONLY); + ok1(fd2 >= 0); + ok1(io_new_conn(fd2, io_read(idler, 1, never, NULL), finish_waker, d)); } static int make_listen_fd(const char *port, struct addrinfo **info) @@ -101,11 +96,11 @@ int main(void) int fd, status; /* This is how many tests you plan to run */ - plan_tests(15); + plan_tests(14); d->state = 0; fd = make_listen_fd("65006", &addrinfo); ok1(fd >= 0); - l = io_new_listener(fd, start_idle, finish_idle, d); + l = io_new_listener(fd, init_conn, d); ok1(l); fflush(stdout); if (!fork()) { @@ -131,7 +126,7 @@ int main(void) freeaddrinfo(addrinfo); ok1(io_loop() == d); - ok1(d->state == 5); + ok1(d->state == 4); ok1(memcmp(d->buf, "hellothere", sizeof(d->buf)) == 0); free(d); io_close_listener(l);