1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-01-26 22:44:21 +00:00

Ignore the submit_fail flag when deciding whether to recruit more curls or not since we have upper bounds on how many curls can be recruited, this test is redundant and can lead to problems.

This commit is contained in:
Con Kolivas 2012-08-22 23:03:17 +10:00
parent d24ac1d95b
commit 61df3013a8

View File

@ -2227,7 +2227,7 @@ retry:
if (!pool->curls)
recruit_curl(pool);
else if (list_empty(&pool->curlring)) {
if (pool->submit_fail || pool->curls >= curl_limit) {
if (pool->curls >= curl_limit) {
pthread_cond_wait(&pool->cr_cond, &pool->pool_lock);
goto retry;
} else