Browse Source

Add some headroom to the number of curls available per pool to allow for longpoll and sendwork curls.

nfactor-troky
Con Kolivas 12 years ago
parent
commit
d37d044fb7
  1. 2
      cgminer.c

2
cgminer.c

@ -2169,7 +2169,7 @@ static void recruit_curl(struct pool *pool) @@ -2169,7 +2169,7 @@ static void recruit_curl(struct pool *pool)
* network delays/outages. */
static struct curl_ent *pop_curl_entry(struct pool *pool)
{
int curl_limit = opt_delaynet ? 5 : mining_threads;
int curl_limit = opt_delaynet ? 5 : mining_threads * 4 / 3;
struct curl_ent *ce;
mutex_lock(&pool->pool_lock);

Loading…
Cancel
Save