finished mthread polymorphisim, moving onto revamping syncronization

This commit is contained in:
Brett Weiland 2023-01-23 17:41:33 -06:00
parent 3b97e627ca
commit e6cf67d4ed

View File

@ -90,7 +90,7 @@ bool mthread::find_work() {
for(;;) {
//find the worker who has the biggest workload
worker = distance(loads, max_element(loads, &loads[worker_cnt]));
if(!loads[worker]) break; //we have found a worker; distance is 0
if(!loads[worker]) return true; //we have found a worker; distance is 0
peer_status = &workers[worker]->status;
peer_status->status_lock.lock();
//check to see if canidate is valid.
@ -124,7 +124,7 @@ bool mthread::find_work() {
status.status_lock.lock();
status.searching = false;
status.status_lock.unlock();
break;
return true;
}
return true;
}