mirror of
https://github.com/GOSTSec/sgminer
synced 2025-02-02 10:04:33 +00:00
opt_queue should be a function of the number of mining threads.
This commit is contained in:
parent
45f0ac7b48
commit
652efc6939
@ -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:
|
||||
if (ts >= maxq)
|
||||
goto out;
|
||||
|
||||
if (ts >= opt_queue && tq >= maxq - 1)
|
||||
if (ts >= oq && tq >= maxq)
|
||||
goto out;
|
||||
|
||||
if (clone_available())
|
||||
|
Loading…
x
Reference in New Issue
Block a user