From 8d39311613502113291e5ae0524021b27eb42446 Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Sun, 28 Aug 2011 20:24:17 +1000 Subject: [PATCH] Reinstate minimum 1 extra in queue to make it extremely unlikely to ever have 0 staged work items and any idle time. --- main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.c b/main.c index 4f45c8a0..15409500 100644 --- a/main.c +++ b/main.c @@ -193,7 +193,7 @@ static int fail_pause = 5; static int opt_log_interval = 5; bool opt_log_output = false; static bool opt_dynamic = true; -static int opt_queue; +static int opt_queue = 1; int opt_vectors; int opt_worksize; int opt_scantime = 60;