feat update
This commit is contained in:
parent
f5f16fcac7
commit
81f156be08
@ -372,7 +372,8 @@ find_row_mask(std::vector<set_t> &sets,
|
|||||||
|
|
||||||
for (int i = 0; i < step && cur_mask < last_mask && !found.load(std::memory_order_relaxed); ++i) {
|
for (int i = 0; i < step && cur_mask < last_mask && !found.load(std::memory_order_relaxed); ++i) {
|
||||||
if (resolve(cur_mask)) {
|
if (resolve(cur_mask)) {
|
||||||
if (!found.exchange(true)) {
|
bool expected = false;
|
||||||
|
if (found.compare_exchange_strong(expected, true)) {
|
||||||
std::lock_guard<std::mutex> _(lock);
|
std::lock_guard<std::mutex> _(lock);
|
||||||
row_mask = cur_mask;
|
row_mask = cur_mask;
|
||||||
break;
|
break;
|
||||||
|
Loading…
Reference in New Issue
Block a user