Commit 4728dd82d1842d6387b9e10006a47282f6f36ef6

Con Kolivas 2013-10-25T12:54:10

Remove the applog on miner threads dying to prevent deadlocks on exit.

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/cgminer.c b/cgminer.c
index 993ad32..5caf08a 100644
--- a/cgminer.c
+++ b/cgminer.c
@@ -6626,8 +6626,6 @@ void *miner_thread(void *userdata)
 out:
 	drv->thread_shutdown(mythr);
 
-	applog(LOG_ERR, "Thread %d failure, exiting", thr_id);
-
 	return NULL;
 }