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=a2898e13e255f6b76e647df1d10aa603a1dfac6e;hb=625bae8f5720d3ad3253ea9b26ad68abcd81bde5;hp=5dc1c3e11b628743165c0b2f160a04cd2fee976b;hpb=42762758d98feb08b861361b7f695de2cad26b07;p=ccan diff --git a/ccan/io/benchmarks/run-loop.c b/ccan/io/benchmarks/run-loop.c index 5dc1c3e1..a2898e13 100644 --- a/ccan/io/benchmarks/run-loop.c +++ b/ccan/io/benchmarks/run-loop.c @@ -16,24 +16,24 @@ struct buffer { char buf[32]; }; -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_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_plan *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); return io_read(conn, &buf->buf, sizeof(buf->buf), poke_writer, buf); } -static struct io_plan *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); return io_write(conn, &buf->buf, sizeof(buf->buf), poke_reader, buf); } -static struct io_plan *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); @@ -47,7 +47,7 @@ static struct io_plan *poke_writer(struct io_conn *conn, struct buffer *buf) return io_idle(conn); } -static struct io_plan *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. */ @@ -60,7 +60,7 @@ static struct io_plan *poke_reader(struct io_conn *conn, struct buffer *buf) return io_idle(conn); } -static struct io_plan *reader(struct io_conn *conn, struct buffer *buf) +static struct io_plan reader(struct io_conn *conn, struct buffer *buf) { assert(conn == buf->reader);