Browse Source

Default --quit-summary to devs if there are more than 24 processors

Luke Dashjr 12 years ago
parent
commit
b59095d8f1
1 changed files with 6 additions and 1 deletions
  1. 6 1
      miner.c

+ 6 - 1
miner.c

@@ -11597,7 +11597,12 @@ int main(int argc, char *argv[])
 	}
 	
 	if (opt_quit_summary == BQS_DEFAULT)
-		opt_quit_summary = BQS_PROCS;
+	{
+		if (total_devices < 25)
+			opt_quit_summary = BQS_PROCS;
+		else
+			opt_quit_summary = BQS_DEVS;
+	}
 
 #ifdef HAVE_CURSES
 	switch_logsize();