1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-02-02 10:04:33 +00:00

Increase upper limit on number of extra items to queue as some FPGA code can't yet reliably keep many devices busy.

This commit is contained in:
Con Kolivas 2012-04-23 09:53:40 +10:00
parent d6edd07c4a
commit 99331991ba

View File

@ -783,8 +783,8 @@ static struct opt_table opt_config_table[] = {
opt_set_bool, &opt_protocol, opt_set_bool, &opt_protocol,
"Verbose dump of protocol-level activities"), "Verbose dump of protocol-level activities"),
OPT_WITH_ARG("--queue|-Q", OPT_WITH_ARG("--queue|-Q",
set_int_0_to_10, opt_show_intval, &opt_queue, set_int_0_to_9999, opt_show_intval, &opt_queue,
"Minimum number of work items to have queued (0 - 10)"), "Minimum number of work items to have queued (0+)"),
OPT_WITHOUT_ARG("--quiet|-q", OPT_WITHOUT_ARG("--quiet|-q",
opt_set_bool, &opt_quiet, opt_set_bool, &opt_quiet,
"Disable logging output, display status and errors"), "Disable logging output, display status and errors"),