From bf0f13dd39ee3e65092ba3572bb5b1fcd125dcd0 Mon Sep 17 00:00:00 2001 From: alexv-smirnov Date: Tue, 13 Jun 2023 11:05:01 +0300 Subject: add ymake export to ydb --- library/cpp/threading/queue/ut/ya.make | 14 ++++++++++++++ library/cpp/threading/queue/ya.make | 24 ++++++++++++++++++++++++ 2 files changed, 38 insertions(+) create mode 100644 library/cpp/threading/queue/ut/ya.make create mode 100644 library/cpp/threading/queue/ya.make (limited to 'library/cpp/threading/queue') diff --git a/library/cpp/threading/queue/ut/ya.make b/library/cpp/threading/queue/ut/ya.make new file mode 100644 index 00000000000..28246305df7 --- /dev/null +++ b/library/cpp/threading/queue/ut/ya.make @@ -0,0 +1,14 @@ +UNITTEST_FOR(library/cpp/threading/queue) + +ALLOCATOR(B) + +SRCS( + basic_ut.cpp + queue_ut.cpp + tune_ut.cpp + unordered_ut.cpp + ut_helpers.cpp + ut_helpers.h +) + +END() diff --git a/library/cpp/threading/queue/ya.make b/library/cpp/threading/queue/ya.make new file mode 100644 index 00000000000..507c80b0721 --- /dev/null +++ b/library/cpp/threading/queue/ya.make @@ -0,0 +1,24 @@ +LIBRARY() + +SRCS( + mpmc_unordered_ring.cpp + mpmc_unordered_ring.h + mpsc_htswap.cpp + mpsc_htswap.h + mpsc_intrusive_unordered.cpp + mpsc_intrusive_unordered.h + mpsc_read_as_filled.cpp + mpsc_read_as_filled.h + mpsc_vinfarr_obstructive.cpp + mpsc_vinfarr_obstructive.h +) + +PEERDIR( + library/cpp/deprecated/atomic +) + +END() + +RECURSE_FOR_TESTS( + ut +) -- cgit v1.3