aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp
diff options
context:
space:
mode:
authorarcadia-devtools <arcadia-devtools@yandex-team.ru>2022-05-12 16:52:45 +0300
committerVitalii Gridnev <gvit@qavm-ff2ff183.qemu>2022-05-12 20:00:35 +0300
commit826c7eacd043881b3e5e60fbbfe7ca861a6bcffd (patch)
treeb4cd400526efd5c9234a5c090feca5488075ab02 /library/cpp
parent5625647c87521120ca5a1f7d24288caa83cd1804 (diff)
downloadydb-826c7eacd043881b3e5e60fbbfe7ca861a6bcffd.tar.gz
intermediate changes
ref:a6dd4541cd4224304d6eeff974067ff591bc40a7
Diffstat (limited to 'library/cpp')
-rw-r--r--library/cpp/yt/memory/ref_counted-inl.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/library/cpp/yt/memory/ref_counted-inl.h b/library/cpp/yt/memory/ref_counted-inl.h
index e6d64fec18..b41f64e803 100644
--- a/library/cpp/yt/memory/ref_counted-inl.h
+++ b/library/cpp/yt/memory/ref_counted-inl.h
@@ -66,7 +66,7 @@ struct TMemoryReleaser<T, std::enable_if_t<T::EnableHazard>>
Y_FORCE_INLINE int TRefCounter::GetRefCount() const noexcept
{
- return StrongCount_.load(std::memory_order_relaxed);
+ return StrongCount_.load(std::memory_order_acquire);
}
Y_FORCE_INLINE void TRefCounter::Ref() const noexcept
@@ -96,7 +96,7 @@ Y_FORCE_INLINE bool TRefCounter::Unref() const
auto oldStrongCount = StrongCount_.fetch_sub(1, std::memory_order_release);
YT_ASSERT(oldStrongCount > 0);
if (oldStrongCount == 1) {
- StrongCount_.load(std::memory_order_acquire);
+ std::atomic_thread_fence(std::memory_order_acquire);
return true;
} else {
return false;
@@ -119,7 +119,7 @@ Y_FORCE_INLINE bool TRefCounter::WeakUnref() const
auto oldWeakCount = WeakCount_.fetch_sub(1, std::memory_order_release);
YT_ASSERT(oldWeakCount > 0);
if (oldWeakCount == 1) {
- WeakCount_.load(std::memory_order_acquire);
+ std::atomic_thread_fence(std::memory_order_acquire);
return true;
} else {
return false;