1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-01-11 07:17:58 +00:00

Revert "Perform all common pool initialisation in add_pool()."

This reverts commit f8b66bde28.

Sets pools to dead by mistake at startup.
This commit is contained in:
Con Kolivas 2012-05-06 14:17:48 +10:00
parent 801d9eaa7b
commit b85d7b5446

View File

@ -395,8 +395,6 @@ static struct pool *add_pool(void)
/* Make sure the pool doesn't think we've been idle since time 0 */ /* Make sure the pool doesn't think we've been idle since time 0 */
pool->tv_idle.tv_sec = ~0UL; pool->tv_idle.tv_sec = ~0UL;
pool->enabled = POOL_ENABLED;
pool->idle = true;
return pool; return pool;
} }
@ -5034,6 +5032,13 @@ int main(int argc, char *argv[])
if (opt_benchmark) if (opt_benchmark)
goto begin_bench; goto begin_bench;
for (i = 0; i < total_pools; i++) {
struct pool *pool = pools[i];
pool->enabled = POOL_ENABLED;
pool->idle = true;
}
applog(LOG_NOTICE, "Probing for an alive pool"); applog(LOG_NOTICE, "Probing for an alive pool");
do { do {
/* Look for at least one active pool before starting */ /* Look for at least one active pool before starting */