Index: benchmark/readyQ/yield.cfa
===================================================================
--- benchmark/readyQ/yield.cfa	(revision 8e27ac450dcd2107832246b097264ec232c1b64f)
+++ benchmark/readyQ/yield.cfa	(revision 566fde0b28f01b803e3c2de9c36338aaa80bdeff)
@@ -13,4 +13,5 @@
 #include <clock.hfa>
 #include <time.hfa>
+#include <stats.hfa>
 
 #include "../benchcltr.hfa"
@@ -45,6 +46,6 @@
 	int nprocs = 1;
 	int nthreads = 1;
-
-
+	bool silent = false;
+	bool procstats = false;
 
 	for(;;) {
@@ -53,9 +54,11 @@
 			{"nprocs",    required_argument, 0, 'p'},
 			{"nthreads",  required_argument, 0, 't'},
+			{"nostats",   no_argument      , 0, 'S'},
+			{"procstat",  no_argument      , 0, 'P'},
 			{0, 0, 0, 0}
 		};
 
 		int idx = 0;
-		int opt = getopt_long(argc, argv, "d:p:t:", options, &idx);
+		int opt = getopt_long(argc, argv, "d:p:t:SP", options, &idx);
 
 		char * arg = optarg ? optarg : "";
@@ -87,4 +90,10 @@
 				}
 				break;
+			case 'S':
+				silent = true;
+				break;
+			case 'P':
+				procstats = true;
+				break;
 			// Other cases
 			default: /* ? */
@@ -96,4 +105,6 @@
 				fprintf( stderr, "  -t, --nthreads=NTHREADS  Number of kernel threads\n" );
 				fprintf( stderr, "  -q, --nqueues=NQUEUES    Number of queues per threads\n" );
+				fprintf( stderr, "  -S, --nostats            Don't print cluster stats\n" );
+				fprintf( stderr, "  -P, --procstat           Print processor stats" );
 				exit(1);
 		}
@@ -107,11 +118,15 @@
 		BenchCluster cl = { 0 };
 		#if !defined(__CFA_NO_STATISTICS__)
-			print_stats_at_exit( cl.self );
+			if( !silent ) {
+				print_stats_at_exit( cl.self, CFA_STATS_READY_Q );
+			}
 		#endif
 		{
 			BenchProc procs[nprocs];
 			#if !defined(__CFA_NO_STATISTICS__)
-				for(i; nprocs) {
-					print_stats_at_exit( procs[i].self );
+				if( procstats ) {
+					for(i; nprocs) {
+						print_stats_at_exit( procs[i].self, CFA_STATS_READY_Q );
+					}
 				}
 			#endif
