Browse Source

Make opt_queue a function of mining threads in clone_work as well.

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

2
cgminer.c

@ -3972,7 +3972,7 @@ static bool reuse_work(struct work *work)
* the future */ * the future */
static struct work *clone_work(struct work *work) static struct work *clone_work(struct work *work)
{ {
int mrs = mining_threads + opt_queue - total_staged(); int oq = opt_queue * mining_threads, mrs = mining_threads + oq - total_staged();
struct work *work_clone; struct work *work_clone;
bool cloned; bool cloned;

Loading…
Cancel
Save