Skip to content

Commit

Permalink
Fix two spinlocks
Browse files Browse the repository at this point in the history
  • Loading branch information
wddgit committed Mar 22, 2024
1 parent 4ce99ab commit f25ce3b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions DPGAnalysis/Skims/src/LogErrorEventFilter.cc
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@ namespace {
};
std::unique_ptr<std::atomic<bool>, release> make_guard(std::atomic<bool> &b) noexcept {
bool expected = false;
while (not b.compare_exchange_strong(expected, true))
;

while (not b.compare_exchange_strong(expected, true)) {
expected = false;
}
return std::unique_ptr<std::atomic<bool>, release>(&b, release());
}

Expand Down
2 changes: 1 addition & 1 deletion FWCore/Framework/src/Path.cc
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ namespace edm {

void Path::threadsafe_setFailedModuleInfo(int nwrwue, bool iExcept) {
bool expected = false;
while (stateLock_.compare_exchange_strong(expected, true)) {
while (not stateLock_.compare_exchange_strong(expected, true)) {
expected = false;
}
if (iExcept) {
Expand Down

0 comments on commit f25ce3b

Please sign in to comment.