X-Git-Url: http://git.ozlabs.org/?a=blobdiff_plain;f=ccan%2Fio%2Ftest%2Frun-10-many.c;fp=ccan%2Fio%2Ftest%2Frun-10-many.c;h=b13e1b4345a34997450b5d3ec62b064286fa0240;hb=0f16a4197c94bfa84dad56d0cb9a9c20438d0a45;hp=1c39635b62ff674e6b961402d49af94881696f2b;hpb=e2ce04eac30ec613c858bd4cd2ca12e1c464edb8;p=ccan diff --git a/ccan/io/test/run-10-many.c b/ccan/io/test/run-10-many.c index 1c39635b..b13e1b43 100644 --- a/ccan/io/test/run-10-many.c +++ b/ccan/io/test/run-10-many.c @@ -66,14 +66,13 @@ int main(void) sprintf(buf[i].buf, "%i-%i", i, i); /* Wait for writer to tell us to read. */ - buf[i].reader = io_new_conn(last_read, io_idle(), NULL, &buf[i]); + buf[i].reader = io_new_conn(last_read, io_idle()); if (!buf[i].reader) break; buf[i].writer = io_new_conn(fds[1], io_write(&buf[i].buf, sizeof(buf[i].buf), - poke_reader, &buf[i]), - NULL, &buf[i]); + poke_reader, &buf[i])); if (!buf[i].writer) break; last_read = fds[0]; @@ -84,12 +83,11 @@ int main(void) /* Last one completes the cirle. */ i = 0; sprintf(buf[i].buf, "%i-%i", i, i); - buf[i].reader = io_new_conn(last_read, io_idle(), NULL, NULL); + buf[i].reader = io_new_conn(last_read, io_idle()); ok1(buf[i].reader); buf[i].writer = io_new_conn(last_write, io_write(&buf[i].buf, sizeof(buf[i].buf), - poke_reader, &buf[i]), - NULL, NULL); + poke_reader, &buf[i])); ok1(buf[i].writer); /* They should eventually exit */