Browse Source

opt_queue should be a function of the number of mining threads.

nfactor-troky
Con Kolivas 12 years ago
parent
commit
652efc6939
  1. 4
      cgminer.c

4
cgminer.c

@ -2382,8 +2382,8 @@ out: @@ -2382,8 +2382,8 @@ out:
static void *get_work_thread(void *userdata)
{
int ts, tq, oq = opt_queue * mining_threads, maxq = oq + mining_threads;
struct workio_cmd *wc = (struct workio_cmd *)userdata;
int ts, tq, maxq = opt_queue + mining_threads;
struct pool *pool = current_pool();
struct work *ret_work= NULL;
struct curl_ent *ce = NULL;
@ -2400,7 +2400,7 @@ retry: @@ -2400,7 +2400,7 @@ retry:
if (ts >= maxq)
goto out;
if (ts >= opt_queue && tq >= maxq - 1)
if (ts >= oq && tq >= maxq)
goto out;
if (clone_available())

Loading…
Cancel
Save