]> git.ozlabs.org Git - ccan/blobdiff - ccan/io/test/run-10-many.c
ccan/io: eliminate dir argument from io_wait and io_always.
[ccan] / ccan / io / test / run-10-many.c
index b70310dd865ed3eaa0047216dbad941e6169a19a..fc48ecb56cf7d75ba3f65750ed4c08849db53b6e 100644 (file)
@@ -34,7 +34,7 @@ static struct io_plan *poke_writer(struct io_conn *conn, struct buffer *buf)
        io_wake(&buf->writer);
 
        /* I'll wait until you wake me. */
-       return io_wait(conn, &buf->reader, IO_IN, read_buf, buf);
+       return io_wait(conn, &buf->reader, read_buf, buf);
 }
 
 static struct io_plan *write_buf(struct io_conn *conn, struct buffer *buf)
@@ -52,12 +52,12 @@ static struct io_plan *poke_reader(struct io_conn *conn, struct buffer *buf)
                return io_close(conn);
 
        /* I'll wait until you tell me to write. */
-       return io_wait(conn, &buf->writer, IO_OUT, write_buf, buf);
+       return io_wait(conn, &buf->writer, write_buf, buf);
 }
 
 static struct io_plan *setup_reader(struct io_conn *conn, struct buffer *buf)
 {
-       return io_wait(conn, &buf->reader, IO_IN, read_buf, buf);
+       return io_wait(conn, &buf->reader, read_buf, buf);
 }
 
 static struct buffer buf[NUM];