]> git.ozlabs.org Git - ccan/blobdiff - ccan/io/_info
ccan/io: implement timeouts.
[ccan] / ccan / io / _info
index 7fc6ac61c1e29a3800798315a73bce4b8d856d85..2e0018ad066ace8029873b42c4217aae8ee29b00 100644 (file)
  *     io_set_finish(reader, finish, &from);
  *     io_new_conn(NULL, STDOUT_FILENO, write_out, &from);
  *
- *     io_loop();
+ *     io_loop(NULL, NULL);
  *     wait(&status);
  *
  *     return WIFEXITED(status) ? WEXITSTATUS(status) : 2;
@@ -133,7 +133,10 @@ int main(int argc, char *argv[])
                return 1;
 
        if (strcmp(argv[1], "depends") == 0) {
+               printf("ccan/list\n");
                printf("ccan/tal\n");
+               printf("ccan/time\n");
+               printf("ccan/timer\n");
                printf("ccan/typesafe_cb\n");
                return 0;
        }