From 99331991ba81168e0355f1e8a9c9d4cccceafc42 Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Mon, 23 Apr 2012 09:53:40 +1000 Subject: [PATCH] Increase upper limit on number of extra items to queue as some FPGA code can't yet reliably keep many devices busy. --- cgminer.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cgminer.c b/cgminer.c index 36b3bec1..e5655463 100644 --- a/cgminer.c +++ b/cgminer.c @@ -783,8 +783,8 @@ static struct opt_table opt_config_table[] = { opt_set_bool, &opt_protocol, "Verbose dump of protocol-level activities"), OPT_WITH_ARG("--queue|-Q", - set_int_0_to_10, opt_show_intval, &opt_queue, - "Minimum number of work items to have queued (0 - 10)"), + set_int_0_to_9999, opt_show_intval, &opt_queue, + "Minimum number of work items to have queued (0+)"), OPT_WITHOUT_ARG("--quiet|-q", opt_set_bool, &opt_quiet, "Disable logging output, display status and errors"),