aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/lfalloc
diff options
context:
space:
mode:
authorarcadia-devtools <arcadia-devtools@yandex-team.ru>2022-03-15 13:35:56 +0300
committerarcadia-devtools <arcadia-devtools@yandex-team.ru>2022-03-15 13:35:56 +0300
commit094638589de6a6c9f91fad0005843fc1c1adc957 (patch)
tree7d55b9e950eb724da222548997547bf6710b1b58 /library/cpp/lfalloc
parentbc921e787bed8a51a43725b78382e806800c44c1 (diff)
downloadydb-094638589de6a6c9f91fad0005843fc1c1adc957.tar.gz
intermediate changes
ref:ca7a95e8c9a9d780f96497136a152091d54e61b5
Diffstat (limited to 'library/cpp/lfalloc')
-rw-r--r--library/cpp/lfalloc/alloc_profiler/ut/ya.make22
-rw-r--r--library/cpp/lfalloc/alloc_profiler/ya.make17
-rw-r--r--library/cpp/lfalloc/dbg/ya.make32
-rw-r--r--library/cpp/lfalloc/dbg_info/ya.make15
-rw-r--r--library/cpp/lfalloc/ya.make25
-rw-r--r--library/cpp/lfalloc/yt/ya.make29
6 files changed, 0 insertions, 140 deletions
diff --git a/library/cpp/lfalloc/alloc_profiler/ut/ya.make b/library/cpp/lfalloc/alloc_profiler/ut/ya.make
deleted file mode 100644
index 8a7daa74af6..00000000000
--- a/library/cpp/lfalloc/alloc_profiler/ut/ya.make
+++ /dev/null
@@ -1,22 +0,0 @@
-UNITTEST_FOR(library/cpp/lfalloc/alloc_profiler)
-
-OWNER(g:rtmr g:kikimr)
-
-PEERDIR(
- library/cpp/testing/unittest
-)
-
-IF (ARCH_AARCH64)
- PEERDIR(
- contrib/libs/jemalloc
- )
-ELSE()
- ALLOCATOR(LF_DBG)
-ENDIF()
-
-SRCS(
- profiler_ut.cpp
- align_ut.cpp
-)
-
-END()
diff --git a/library/cpp/lfalloc/alloc_profiler/ya.make b/library/cpp/lfalloc/alloc_profiler/ya.make
deleted file mode 100644
index 0f58d917678..00000000000
--- a/library/cpp/lfalloc/alloc_profiler/ya.make
+++ /dev/null
@@ -1,17 +0,0 @@
-LIBRARY()
-
-OWNER(g:rtmr g:kikimr)
-
-SRCS(
- profiler.cpp
- stackcollect.cpp
-)
-
-PEERDIR(
- library/cpp/lfalloc/dbg_info
- library/cpp/cache
-)
-
-END()
-
-RECURSE(ut)
diff --git a/library/cpp/lfalloc/dbg/ya.make b/library/cpp/lfalloc/dbg/ya.make
deleted file mode 100644
index 3dce653a8c8..00000000000
--- a/library/cpp/lfalloc/dbg/ya.make
+++ /dev/null
@@ -1,32 +0,0 @@
-LIBRARY()
-
-OWNER(vskipin)
-
-NO_UTIL()
-
-NO_COMPILER_WARNINGS()
-
-IF (ARCH_AARCH64)
- PEERDIR(
- contrib/libs/jemalloc
- )
-ELSE()
- IF ("${YMAKE}" MATCHES "devtools")
- CFLAGS(-DYMAKE=1)
- ENDIF()
- CXXFLAGS(
- -DLFALLOC_DBG
- -DLFALLOC_YT
- )
- SRCS(
- ../lf_allocX64.cpp
- )
-ENDIF()
-
-PEERDIR(
- library/cpp/malloc/api
-)
-
-SET(IDE_FOLDER "util")
-
-END()
diff --git a/library/cpp/lfalloc/dbg_info/ya.make b/library/cpp/lfalloc/dbg_info/ya.make
deleted file mode 100644
index efecba59934..00000000000
--- a/library/cpp/lfalloc/dbg_info/ya.make
+++ /dev/null
@@ -1,15 +0,0 @@
-LIBRARY()
-
-OWNER(vskipin)
-
-PEERDIR(
- library/cpp/malloc/api
-)
-
-SRCS(
- dbg_info.cpp
-)
-
-SET(IDE_FOLDER "util")
-
-END()
diff --git a/library/cpp/lfalloc/ya.make b/library/cpp/lfalloc/ya.make
deleted file mode 100644
index cace05f9d80..00000000000
--- a/library/cpp/lfalloc/ya.make
+++ /dev/null
@@ -1,25 +0,0 @@
-LIBRARY()
-
-OWNER(gulin)
-
-NO_UTIL()
-
-NO_COMPILER_WARNINGS()
-
-IF (ARCH_AARCH64)
- PEERDIR(
- contrib/libs/jemalloc
- )
-ELSE()
- SRCS(
- lf_allocX64.cpp
- )
-ENDIF()
-
-PEERDIR(
- library/cpp/malloc/api
-)
-
-SET(IDE_FOLDER "util")
-
-END()
diff --git a/library/cpp/lfalloc/yt/ya.make b/library/cpp/lfalloc/yt/ya.make
deleted file mode 100644
index 8c1a4f8a72e..00000000000
--- a/library/cpp/lfalloc/yt/ya.make
+++ /dev/null
@@ -1,29 +0,0 @@
-LIBRARY()
-
-OWNER(a-romanov)
-
-NO_UTIL()
-
-NO_COMPILER_WARNINGS()
-
-IF (ARCH_AARCH64)
- PEERDIR(
- contrib/libs/jemalloc
- )
-ELSE()
- IF ("${YMAKE}" MATCHES "devtools")
- CFLAGS(-DYMAKE=1)
- ENDIF()
- CXXFLAGS(-DLFALLOC_YT)
- SRCS(
- ../lf_allocX64.cpp
- )
-ENDIF()
-
-PEERDIR(
- library/cpp/malloc/api
-)
-
-SET(IDE_FOLDER "util")
-
-END()