diff options
author | alexv-smirnov <alex@ydb.tech> | 2023-03-28 22:25:04 +0300 |
---|---|---|
committer | alexv-smirnov <alex@ydb.tech> | 2023-03-28 22:25:04 +0300 |
commit | b8a17f9b1c166d2e9a26b99348a4c29d972caf55 (patch) | |
tree | 1a2d881f1a9452b9c6103dbf69d73da7624e98e5 /library/cpp/threading | |
parent | 25659221f18577ea38430a8ec3349836f5626b6a (diff) | |
download | ydb-b8a17f9b1c166d2e9a26b99348a4c29d972caf55.tar.gz |
Revert ymake build from ydb oss export
Diffstat (limited to 'library/cpp/threading')
27 files changed, 0 insertions, 343 deletions
diff --git a/library/cpp/threading/atomic/ut/ya.make b/library/cpp/threading/atomic/ut/ya.make deleted file mode 100644 index fe2a5ac8f9..0000000000 --- a/library/cpp/threading/atomic/ut/ya.make +++ /dev/null @@ -1,7 +0,0 @@ -UNITTEST_FOR(library/cpp/threading/atomic) - -SRCS( - bool_ut.cpp -) - -END() diff --git a/library/cpp/threading/atomic/ya.make b/library/cpp/threading/atomic/ya.make deleted file mode 100644 index e4dd81d9d3..0000000000 --- a/library/cpp/threading/atomic/ya.make +++ /dev/null @@ -1,15 +0,0 @@ -LIBRARY() - -SRCS( - bool.cpp -) - -PEERDIR( - library/cpp/deprecated/atomic -) - -END() - -RECURSE_FOR_TESTS( - ut -) diff --git a/library/cpp/threading/chunk_queue/ut/ya.make b/library/cpp/threading/chunk_queue/ut/ya.make deleted file mode 100644 index a58422ce02..0000000000 --- a/library/cpp/threading/chunk_queue/ut/ya.make +++ /dev/null @@ -1,7 +0,0 @@ -UNITTEST_FOR(library/cpp/threading/chunk_queue) - -SRCS( - queue_ut.cpp -) - -END() diff --git a/library/cpp/threading/chunk_queue/ya.make b/library/cpp/threading/chunk_queue/ya.make deleted file mode 100644 index a0d7c556ef..0000000000 --- a/library/cpp/threading/chunk_queue/ya.make +++ /dev/null @@ -1,15 +0,0 @@ -LIBRARY() - -SRCS( - queue.cpp -) - -PEERDIR( - library/cpp/deprecated/atomic -) - -END() - -RECURSE_FOR_TESTS( - ut -) diff --git a/library/cpp/threading/equeue/ut/ya.make b/library/cpp/threading/equeue/ut/ya.make deleted file mode 100644 index 60bc0aa604..0000000000 --- a/library/cpp/threading/equeue/ut/ya.make +++ /dev/null @@ -1,13 +0,0 @@ -UNITTEST() - -PEERDIR( - ADDINCL library/cpp/threading/equeue -) - -SRCDIR(library/cpp/threading/equeue) - -SRCS( - equeue_ut.cpp -) - -END() diff --git a/library/cpp/threading/equeue/ya.make b/library/cpp/threading/equeue/ya.make deleted file mode 100644 index 445797aa12..0000000000 --- a/library/cpp/threading/equeue/ya.make +++ /dev/null @@ -1,16 +0,0 @@ -LIBRARY() - -SRCS( - equeue.h - equeue.cpp -) - -PEERDIR( - library/cpp/deprecated/atomic -) - -END() - -RECURSE_FOR_TESTS( - ut -) diff --git a/library/cpp/threading/future/mt_ut/ya.make b/library/cpp/threading/future/mt_ut/ya.make deleted file mode 100644 index fee088813a..0000000000 --- a/library/cpp/threading/future/mt_ut/ya.make +++ /dev/null @@ -1,12 +0,0 @@ -UNITTEST_FOR(library/cpp/threading/future) - -SRCS( - future_mt_ut.cpp -) - -IF(SANITIZER_TYPE) - SIZE(MEDIUM) -ENDIF() - - -END() diff --git a/library/cpp/threading/future/perf/ya.make b/library/cpp/threading/future/perf/ya.make deleted file mode 100644 index 0677420107..0000000000 --- a/library/cpp/threading/future/perf/ya.make +++ /dev/null @@ -1,11 +0,0 @@ -Y_BENCHMARK(library-threading-future-perf) - -SRCS( - main.cpp -) - -PEERDIR( - library/cpp/threading/future -) - -END() diff --git a/library/cpp/threading/future/ut/ya.make b/library/cpp/threading/future/ut/ya.make deleted file mode 100644 index 7b18274169..0000000000 --- a/library/cpp/threading/future/ut/ya.make +++ /dev/null @@ -1,10 +0,0 @@ -UNITTEST_FOR(library/cpp/threading/future) - -SRCS( - async_semaphore_ut.cpp - async_ut.cpp - future_ut.cpp - legacy_future_ut.cpp -) - -END() diff --git a/library/cpp/threading/future/ya.make b/library/cpp/threading/future/ya.make deleted file mode 100644 index 32b54ff518..0000000000 --- a/library/cpp/threading/future/ya.make +++ /dev/null @@ -1,25 +0,0 @@ -SUBSCRIBER( - swarmer -) - -LIBRARY() - -SRCS( - async_semaphore.cpp - async.cpp - core/future.cpp - core/fwd.cpp - fwd.cpp - wait/fwd.cpp - wait/wait.cpp - wait/wait_group.cpp - wait/wait_policy.cpp -) - -END() - -RECURSE( - mt_ut - perf - ut -) diff --git a/library/cpp/threading/hot_swap/ya.make b/library/cpp/threading/hot_swap/ya.make deleted file mode 100644 index 82eb6490a4..0000000000 --- a/library/cpp/threading/hot_swap/ya.make +++ /dev/null @@ -1,11 +0,0 @@ -LIBRARY() - -SRCS( - hot_swap.cpp -) - -PEERDIR( - library/cpp/deprecated/atomic -) - -END() diff --git a/library/cpp/threading/light_rw_lock/bench/ya.make b/library/cpp/threading/light_rw_lock/bench/ya.make deleted file mode 100644 index 297cfe1d0a..0000000000 --- a/library/cpp/threading/light_rw_lock/bench/ya.make +++ /dev/null @@ -1,11 +0,0 @@ -PROGRAM(lightrwlock_test) - -SRCS( - lightrwlock_test.cpp -) - -PEERDIR( - library/cpp/threading/light_rw_lock -) - -END() diff --git a/library/cpp/threading/light_rw_lock/ut/ya.make b/library/cpp/threading/light_rw_lock/ut/ya.make deleted file mode 100644 index 780dd65803..0000000000 --- a/library/cpp/threading/light_rw_lock/ut/ya.make +++ /dev/null @@ -1,11 +0,0 @@ -UNITTEST_FOR(library/cpp/threading/light_rw_lock) - -SRCS( - rwlock_ut.cpp -) - -PEERDIR( - library/cpp/deprecated/atomic -) - -END() diff --git a/library/cpp/threading/light_rw_lock/ya.make b/library/cpp/threading/light_rw_lock/ya.make deleted file mode 100644 index a2452336c3..0000000000 --- a/library/cpp/threading/light_rw_lock/ya.make +++ /dev/null @@ -1,13 +0,0 @@ -LIBRARY() - -SRCS( - lightrwlock.cpp - lightrwlock.h -) - -END() - -RECURSE( - bench - ut -) diff --git a/library/cpp/threading/local_executor/ut/ya.make b/library/cpp/threading/local_executor/ut/ya.make deleted file mode 100644 index c571115f60..0000000000 --- a/library/cpp/threading/local_executor/ut/ya.make +++ /dev/null @@ -1,7 +0,0 @@ -UNITTEST_FOR(library/cpp/threading/local_executor) - -SRCS( - local_executor_ut.cpp -) - -END() diff --git a/library/cpp/threading/local_executor/ya.make b/library/cpp/threading/local_executor/ya.make deleted file mode 100644 index 2ccaa3031a..0000000000 --- a/library/cpp/threading/local_executor/ya.make +++ /dev/null @@ -1,18 +0,0 @@ -LIBRARY() - -SRCS( - local_executor.cpp - tbb_local_executor.cpp -) - -PEERDIR( - contrib/libs/tbb - library/cpp/threading/future - library/cpp/deprecated/atomic -) - -END() - -RECURSE_FOR_TESTS( - ut -) diff --git a/library/cpp/threading/mux_event/ya.make b/library/cpp/threading/mux_event/ya.make deleted file mode 100644 index 0e112b5ef9..0000000000 --- a/library/cpp/threading/mux_event/ya.make +++ /dev/null @@ -1,11 +0,0 @@ -LIBRARY() - -SRCS( - mux_event.cpp -) - -PEERDIR( - library/cpp/deprecated/atomic -) - -END() diff --git a/library/cpp/threading/poor_man_openmp/ut/ya.make b/library/cpp/threading/poor_man_openmp/ut/ya.make deleted file mode 100644 index 570b8788f0..0000000000 --- a/library/cpp/threading/poor_man_openmp/ut/ya.make +++ /dev/null @@ -1,7 +0,0 @@ -UNITTEST_FOR(library/cpp/threading/poor_man_openmp) - -SRCS( - thread_helper_ut.cpp -) - -END() diff --git a/library/cpp/threading/poor_man_openmp/ya.make b/library/cpp/threading/poor_man_openmp/ya.make deleted file mode 100644 index 976b2b6b3c..0000000000 --- a/library/cpp/threading/poor_man_openmp/ya.make +++ /dev/null @@ -1,15 +0,0 @@ -LIBRARY() - -SRCS( - thread_helper.cpp -) - -PEERDIR( - library/cpp/deprecated/atomic -) - -END() - -RECURSE_FOR_TESTS( - ut -) diff --git a/library/cpp/threading/queue/ut/ya.make b/library/cpp/threading/queue/ut/ya.make deleted file mode 100644 index 28246305df..0000000000 --- a/library/cpp/threading/queue/ut/ya.make +++ /dev/null @@ -1,14 +0,0 @@ -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 deleted file mode 100644 index 507c80b072..0000000000 --- a/library/cpp/threading/queue/ya.make +++ /dev/null @@ -1,24 +0,0 @@ -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 -) diff --git a/library/cpp/threading/skip_list/perf/ya.make b/library/cpp/threading/skip_list/perf/ya.make deleted file mode 100644 index 476d2eaff4..0000000000 --- a/library/cpp/threading/skip_list/perf/ya.make +++ /dev/null @@ -1,13 +0,0 @@ -PROGRAM(skiplist-perf) - -PEERDIR( - library/cpp/charset - library/cpp/getopt/small - library/cpp/threading/skip_list -) - -SRCS( - main.cpp -) - -END() diff --git a/library/cpp/threading/skip_list/ut/ya.make b/library/cpp/threading/skip_list/ut/ya.make deleted file mode 100644 index 6748e4e43a..0000000000 --- a/library/cpp/threading/skip_list/ut/ya.make +++ /dev/null @@ -1,7 +0,0 @@ -UNITTEST_FOR(library/cpp/threading/skip_list) - -SRCS( - skiplist_ut.cpp -) - -END() diff --git a/library/cpp/threading/skip_list/ya.make b/library/cpp/threading/skip_list/ya.make deleted file mode 100644 index 0c3f91046e..0000000000 --- a/library/cpp/threading/skip_list/ya.make +++ /dev/null @@ -1,16 +0,0 @@ -LIBRARY() - -SRCS( - skiplist.cpp -) - -PEERDIR( - library/cpp/deprecated/atomic -) - -END() - -RECURSE( - perf - ut -) diff --git a/library/cpp/threading/task_scheduler/ut/ya.make b/library/cpp/threading/task_scheduler/ut/ya.make deleted file mode 100644 index 93e77b8e9a..0000000000 --- a/library/cpp/threading/task_scheduler/ut/ya.make +++ /dev/null @@ -1,7 +0,0 @@ -UNITTEST_FOR(library/cpp/threading/task_scheduler) - -SRCS( - task_scheduler_ut.cpp -) - -END() diff --git a/library/cpp/threading/task_scheduler/ya.make b/library/cpp/threading/task_scheduler/ya.make deleted file mode 100644 index 33cb6bba2f..0000000000 --- a/library/cpp/threading/task_scheduler/ya.make +++ /dev/null @@ -1,15 +0,0 @@ -LIBRARY() - -SRCS( - task_scheduler.cpp -) - -PEERDIR( - library/cpp/deprecated/atomic -) - -END() - -RECURSE_FOR_TESTS( - ut -) diff --git a/library/cpp/threading/thread_local/ya.make b/library/cpp/threading/thread_local/ya.make deleted file mode 100644 index 676381ab0f..0000000000 --- a/library/cpp/threading/thread_local/ya.make +++ /dev/null @@ -1,12 +0,0 @@ -LIBRARY() - -PEERDIR( - library/cpp/threading/hot_swap - library/cpp/threading/skip_list -) - -GENERATE_ENUM_SERIALIZATION(thread_local.h) - -SRCS(thread_local.cpp) - -END() |