Browse Source

Add management for dead GBT pools.

Con Kolivas 13 years ago
parent
commit
e0157208ab
1 changed files with 0 additions and 4 deletions
  1. 0 4
      cgminer.c

+ 0 - 4
cgminer.c

@@ -3040,7 +3040,6 @@ retry:
 	}
 
 	if (pool->has_gbt) {
-#if 0
 		while (pool->idle) {
 			struct pool *altpool = select_pool(true);
 
@@ -3052,7 +3051,6 @@ retry:
 				goto retry;
 			}
 		}
-#endif
 		ret_work = make_work();
 		gen_gbt_work(pool, ret_work);
 		if (unlikely(!stage_work(ret_work))) {
@@ -5011,10 +5009,8 @@ static bool reuse_work(struct work *work, struct pool *pool)
 	}
 
 	if (pool->has_gbt) {
-#if 0
 		if (pool->idle)
 			return false;
-#endif
 		applog(LOG_DEBUG, "Reusing GBT work");
 		gen_gbt_work(pool, work);
 		return true;