summaryrefslogtreecommitdiffstats
path: root/library/cpp/threading/local_executor
diff options
context:
space:
mode:
Diffstat (limited to 'library/cpp/threading/local_executor')
-rw-r--r--library/cpp/threading/local_executor/ut/ya.make7
-rw-r--r--library/cpp/threading/local_executor/ya.make18
2 files changed, 25 insertions, 0 deletions
diff --git a/library/cpp/threading/local_executor/ut/ya.make b/library/cpp/threading/local_executor/ut/ya.make
new file mode 100644
index 00000000000..c571115f60e
--- /dev/null
+++ b/library/cpp/threading/local_executor/ut/ya.make
@@ -0,0 +1,7 @@
+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
new file mode 100644
index 00000000000..2ccaa3031a8
--- /dev/null
+++ b/library/cpp/threading/local_executor/ya.make
@@ -0,0 +1,18 @@
+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
+)