Browse Source

Make the USB polling thread poll every second to potentially aid longer timeout transfers.

Con Kolivas 12 years ago
parent
commit
bec75b61a6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      cgminer.c

+ 1 - 1
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");