mirror of
https://github.com/GOSTSec/sgminer
synced 2025-03-13 06:01:03 +00:00
Set lagging flag if we're on the last of our staged items.
This commit is contained in:
parent
ee9e621e1c
commit
a5f7b953fe
@ -2392,7 +2392,6 @@ static void *get_work_thread(void *userdata)
|
||||
struct pool *pool = current_pool();
|
||||
struct curl_ent *ce = NULL;
|
||||
struct work *ret_work;
|
||||
bool lagging = false;
|
||||
int failures = 0;
|
||||
|
||||
pthread_detach(pthread_self());
|
||||
@ -2409,8 +2408,6 @@ static void *get_work_thread(void *userdata)
|
||||
ts = __total_staged();
|
||||
mutex_unlock(stgd_lock);
|
||||
|
||||
if (!ts)
|
||||
lagging = true;
|
||||
if (((cs >= opt_queue || cq >= opt_queue) && ts >= maxq) ||
|
||||
((cs >= opt_queue || cq >= opt_queue) && tq >= maxq) ||
|
||||
clone_available())
|
||||
@ -2425,6 +2422,10 @@ static void *get_work_thread(void *userdata)
|
||||
if (opt_benchmark)
|
||||
get_benchmark_work(ret_work);
|
||||
else {
|
||||
bool lagging;
|
||||
|
||||
if (ts <= opt_queue)
|
||||
lagging = true;
|
||||
pool = ret_work->pool = select_pool(lagging);
|
||||
inc_queued(pool);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user