From bec75b61a6199082f5ccfbaac82427a47b54d028 Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Wed, 16 Oct 2013 20:34:51 +1100 Subject: [PATCH] Make the USB polling thread poll every second to potentially aid longer timeout transfers. --- cgminer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cgminer.c b/cgminer.c index 872dffe1..c2a91338 100644 --- a/cgminer.c +++ b/cgminer.c @@ -7795,7 +7795,7 @@ static void probe_pools(void) #ifdef USE_USBUTILS static void *libusb_poll_thread(void __maybe_unused *arg) { - struct timeval tv_end = {0, 200000}; + struct timeval tv_end = {1, 0}; RenameThread("usbpoll");