Home | History | Annotate | Download | only in BlocksRuntime

Lines Matching refs:verbose

14 int verbose = 0;
18 if (argc > 1) verbose = 1;
22 if (verbose) printf("recursive_local_block is a local recursive block\n");
24 if (verbose) printf("%d\n", i);
30 if (verbose) printf("recursive_local_block's address is %p, running it:\n", (void*)recursive_local_block);
33 if (verbose) printf("Creating other_local_block: a local block that calls recursive_local_block\n");
36 if (verbose) printf("other_local_block running\n");
40 if (verbose) printf("other_local_block's address is %p, running it:\n", (void*)other_local_block);
45 if (verbose) printf("Creating other_copied_block: a Block_copy of a block that will call recursive_local_block\n");
48 if (verbose) printf("other_copied_block running\n");
52 if (verbose) printf("other_copied_block's address is %p, running it:\n", (void*)other_copied_block);
59 if (verbose) printf("Creating recursive_copy_block: a Block_copy of a block that will call recursive_copy_block recursively\n");
62 if (verbose) printf("%d\n", i);
68 if (verbose) printf("recursive_copy_block's address is %p, running it:\n", (void*)recursive_copy_block);