We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 604518f commit 4916ae7Copy full SHA for 4916ae7
bindings/profilers/wall.cc
@@ -657,11 +657,11 @@ WallProfiler::WallProfiler(std::chrono::microseconds samplingPeriod,
657
}
658
659
void WallProfiler::UpdateContextCount() {
660
- std::atomic_store_explicit(
661
- reinterpret_cast<std::atomic<uint32_t>*>(
662
- &fields_[WallProfiler::Fields::kCPEDContextCount]),
663
- liveContextPtrs_.size(),
664
- std::memory_order_relaxed);
+ std::atomic_store_explicit(
+ reinterpret_cast<std::atomic<uint32_t>*>(
+ &fields_[WallProfiler::Fields::kCPEDContextCount]),
+ liveContextPtrs_.size(),
+ std::memory_order_relaxed);
665
666
667
void WallProfiler::Dispose(Isolate* isolate, bool removeFromMap) {
0 commit comments