From d9d5a1a0b6fce693acc0edb65fc6e5d054c589c3 Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Mon, 25 Feb 2013 09:15:20 +1100 Subject: [PATCH] Speed up watchdog interval and therefore display updates to 2 seconds. --- cgminer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cgminer.c b/cgminer.c index 0ec9d541..69809889 100644 --- a/cgminer.c +++ b/cgminer.c @@ -5843,7 +5843,7 @@ static void *watchpool_thread(void __maybe_unused *userdata) /* Makes sure the hashmeter keeps going even if mining threads stall, updates * the screen at regular intervals, and restarts threads if they appear to have * died. */ -#define WATCHDOG_INTERVAL 3 +#define WATCHDOG_INTERVAL 2 #define WATCHDOG_SICK_TIME 60 #define WATCHDOG_DEAD_TIME 600 #define WATCHDOG_SICK_COUNT (WATCHDOG_SICK_TIME/WATCHDOG_INTERVAL)