Skip to content

Commit

Permalink
Merge pull request #44517 from wddgit/fixSpinLocks
Browse files Browse the repository at this point in the history
Fix two spinlocks
  • Loading branch information
cmsbuild authored Mar 26, 2024
2 parents 1a5ee3d + f25ce3b commit db4e866
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 db4e866

Please sign in to comment.