X-Git-Url: https://git.ozlabs.org/?a=blobdiff_plain;f=ccan%2Fio%2Fbenchmarks%2Frun-loop.c;fp=ccan%2Fio%2Fbenchmarks%2Frun-loop.c;h=7b1aef5a96acb46171e9ca4df1babad8c746520d;hb=7a8a585c32d1010426f587a6933f05de7a06dfd0;hp=9af564c736d3a226535d9e13c14fd1d8df312177;hpb=1fe2db9cbe84812e1465db36f538a222e9984c93;p=ccan diff --git a/ccan/io/benchmarks/run-loop.c b/ccan/io/benchmarks/run-loop.c index 9af564c7..7b1aef5a 100644 --- a/ccan/io/benchmarks/run-loop.c +++ b/ccan/io/benchmarks/run-loop.c @@ -16,10 +16,10 @@ struct buffer { char buf[32]; }; -static struct io_op *poke_writer(struct io_conn *conn, struct buffer *buf); -static struct io_op *poke_reader(struct io_conn *conn, struct buffer *buf); +static struct io_plan *poke_writer(struct io_conn *conn, struct buffer *buf); +static struct io_plan *poke_reader(struct io_conn *conn, struct buffer *buf); -static struct io_op *do_read(struct io_conn *conn, struct buffer *buf) +static struct io_plan *do_read(struct io_conn *conn, struct buffer *buf) { assert(conn == buf->reader); @@ -27,7 +27,7 @@ static struct io_op *do_read(struct io_conn *conn, struct buffer *buf) io_next(conn, poke_writer, buf)); } -static struct io_op *do_write(struct io_conn *conn, struct buffer *buf) +static struct io_plan *do_write(struct io_conn *conn, struct buffer *buf) { assert(conn == buf->writer); @@ -35,7 +35,7 @@ static struct io_op *do_write(struct io_conn *conn, struct buffer *buf) io_next(conn, poke_reader, buf)); } -static struct io_op *poke_writer(struct io_conn *conn, struct buffer *buf) +static struct io_plan *poke_writer(struct io_conn *conn, struct buffer *buf) { assert(conn == buf->reader); @@ -49,7 +49,7 @@ static struct io_op *poke_writer(struct io_conn *conn, struct buffer *buf) return io_idle(conn); } -static struct io_op *poke_reader(struct io_conn *conn, struct buffer *buf) +static struct io_plan *poke_reader(struct io_conn *conn, struct buffer *buf) { assert(conn == buf->writer); /* You read. */ @@ -62,7 +62,7 @@ static struct io_op *poke_reader(struct io_conn *conn, struct buffer *buf) return io_idle(conn); } -static struct io_op *reader(struct io_conn *conn, struct buffer *buf) +static struct io_plan *reader(struct io_conn *conn, struct buffer *buf) { assert(conn == buf->reader);