Index: benchmark/readyQ/yield.cfa
===================================================================
--- benchmark/readyQ/yield.cfa	(revision fdc3f9d7ba0bc32e0341143038fb613098193b5b)
+++ benchmark/readyQ/yield.cfa	(revision 2c7d0e83c824f1dc542abb7b2e415aacc33341d2)
@@ -80,8 +80,10 @@
 		}
 
-		printf("Took %'ld ms\n", (end - start)`ms);
+		printf("Duration (ms)       : %'ld\n", (end - start)`ms);
+		printf("Number of processors: %'d\n", nprocs);
+		printf("Number of threads   : %'d\n", nthreads);
+		printf("Total yields        : %'15llu\n", global_counter);
 		printf("Yields per second   : %'18.2lf\n", ((double)global_counter) / (end - start)`s);
 		printf("ns per yields       : %'18.2lf\n", ((double)(end - start)`ns) / global_counter);
-		printf("Total yields        : %'15llu\n", global_counter);
 		printf("Yields per procs    : %'15llu\n", global_counter / nprocs);
 		printf("Yields/sec/procs    : %'18.2lf\n", (((double)global_counter) / nprocs) / (end - start)`s);
