Browse Source

Make sure we don't opt out of queueing more work if all the queued work is from one pool.

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

2
cgminer.c

@ -2409,7 +2409,7 @@ static void *get_work_thread(void *userdata) @@ -2409,7 +2409,7 @@ static void *get_work_thread(void *userdata)
mutex_unlock(stgd_lock);
if (((cs >= opt_queue || cq >= opt_queue) && ts >= maxq) ||
((cs >= opt_queue || cq >= opt_queue) && tq >= maxq) ||
((cs >= opt_queue || cq >= opt_queue) && tq >= maxq && cq < maxq) ||
clone_available())
goto out;

Loading…
Cancel
Save