diff options
author | aleexfi <aleexfi@yandex-team.com> | 2023-05-10 13:26:37 +0300 |
---|---|---|
committer | aleexfi <aleexfi@yandex-team.com> | 2023-05-10 13:26:37 +0300 |
commit | a5581558250508c2cae6de5225e540e12289a530 (patch) | |
tree | 4cb62dc7dd7e67f753acf539d3515bb9c41bba67 /library/cpp/yt/threading/public.h | |
parent | cc5864c4a61e0fb13950c8ad0c2067874cddcc2f (diff) | |
download | ydb-a5581558250508c2cae6de5225e540e12289a530.tar.gz |
YT-17689: Move TFreeList to library/cpp/yt/memory
Iteration no. 2. First one reverted due to YT-18997
Diffstat (limited to 'library/cpp/yt/threading/public.h')
-rw-r--r-- | library/cpp/yt/threading/public.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/library/cpp/yt/threading/public.h b/library/cpp/yt/threading/public.h index 92d062ac3e1..ab6cb226633 100644 --- a/library/cpp/yt/threading/public.h +++ b/library/cpp/yt/threading/public.h @@ -6,13 +6,9 @@ namespace NYT::NThreading { //////////////////////////////////////////////////////////////////////////////// -// TODO(babenko): consider increasing to 128 due to cache line pairing in L2 prefetcher. -constexpr size_t CacheLineSize = 64; - #define YT_DECLARE_SPIN_LOCK(type, name) \ type name{__LOCATION__} //////////////////////////////////////////////////////////////////////////////// } // namespace NYT::NThreading - |