X-Git-Url: http://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=ccan%2Fio%2Ftest%2Frun-10-many.c;h=95a716e2263d26bc65e91d82f818d6a29c276509;hp=91b335e103216a4b371233d266a36cb0c8216e5f;hb=737705f0c2ec60ea5b51ca55299488d86db37b5d;hpb=625bae8f5720d3ad3253ea9b26ad68abcd81bde5 diff --git a/ccan/io/test/run-10-many.c b/ccan/io/test/run-10-many.c index 91b335e1..95a716e2 100644 --- a/ccan/io/test/run-10-many.c +++ b/ccan/io/test/run-10-many.c @@ -22,16 +22,14 @@ static struct io_plan plan_read(struct io_conn *conn, struct buffer *buf) { assert(conn == buf->reader); - return io_read(conn, &buf->buf, sizeof(buf->buf), - poke_writer, buf); + return io_read(&buf->buf, sizeof(buf->buf), poke_writer, buf); } static struct io_plan plan_write(struct io_conn *conn, struct buffer *buf) { assert(conn == buf->writer); - return io_write(conn, &buf->buf, sizeof(buf->buf), - poke_reader, buf); + return io_write(&buf->buf, sizeof(buf->buf), poke_reader, buf); } static struct io_plan poke_writer(struct io_conn *conn, struct buffer *buf) @@ -45,7 +43,7 @@ static struct io_plan poke_writer(struct io_conn *conn, struct buffer *buf) io_wake(buf->writer, plan_write, buf); /* I'll wait until you wake me. */ - return io_idle(conn); + return io_idle(); } static struct io_plan poke_reader(struct io_conn *conn, struct buffer *buf) @@ -58,7 +56,7 @@ static struct io_plan poke_reader(struct io_conn *conn, struct buffer *buf) return io_close(conn, NULL); /* I'll wait until you tell me to write. */ - return io_idle(conn); + return io_idle(); } static struct io_plan reader(struct io_conn *conn, struct buffer *buf) @@ -66,7 +64,7 @@ static struct io_plan reader(struct io_conn *conn, struct buffer *buf) assert(conn == buf->reader); /* Wait for writer to tell us to read. */ - return io_idle(conn); + return io_idle(); } static struct buffer buf[NUM];