aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/malloc
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/malloc
parentbc921e787bed8a51a43725b78382e806800c44c1 (diff)
downloadydb-094638589de6a6c9f91fad0005843fc1c1adc957.tar.gz
intermediate changes
ref:ca7a95e8c9a9d780f96497136a152091d54e61b5
Diffstat (limited to 'library/cpp/malloc')
-rw-r--r--library/cpp/malloc/api/helpers/ya.make13
-rw-r--r--library/cpp/malloc/api/ut/ya.make13
-rw-r--r--library/cpp/malloc/api/ya.make11
-rw-r--r--library/cpp/malloc/jemalloc/ya.make21
-rw-r--r--library/cpp/malloc/system/malloc-info.cpp9
-rw-r--r--library/cpp/malloc/system/ya.make17
-rw-r--r--library/cpp/malloc/tcmalloc/ya.make15
-rw-r--r--library/cpp/malloc/ya.make26
8 files changed, 0 insertions, 125 deletions
diff --git a/library/cpp/malloc/api/helpers/ya.make b/library/cpp/malloc/api/helpers/ya.make
deleted file mode 100644
index 62875bca0e..0000000000
--- a/library/cpp/malloc/api/helpers/ya.make
+++ /dev/null
@@ -1,13 +0,0 @@
-LIBRARY()
-
-OWNER(pg)
-
-PEERDIR(
- library/cpp/malloc/api
-)
-
-SRCS(
- io.cpp
-)
-
-END()
diff --git a/library/cpp/malloc/api/ut/ya.make b/library/cpp/malloc/api/ut/ya.make
deleted file mode 100644
index e57225b45d..0000000000
--- a/library/cpp/malloc/api/ut/ya.make
+++ /dev/null
@@ -1,13 +0,0 @@
-UNITTEST()
-
-OWNER(nga)
-
-PEERDIR(
- library/cpp/malloc/api/helpers
-)
-
-SRCS(
- ut.cpp
-)
-
-END()
diff --git a/library/cpp/malloc/api/ya.make b/library/cpp/malloc/api/ya.make
deleted file mode 100644
index 0ebaa0c589..0000000000
--- a/library/cpp/malloc/api/ya.make
+++ /dev/null
@@ -1,11 +0,0 @@
-LIBRARY()
-
-NO_UTIL()
-
-OWNER(nga)
-
-SRCS(
- malloc.cpp
-)
-
-END()
diff --git a/library/cpp/malloc/jemalloc/ya.make b/library/cpp/malloc/jemalloc/ya.make
deleted file mode 100644
index 99db474eab..0000000000
--- a/library/cpp/malloc/jemalloc/ya.make
+++ /dev/null
@@ -1,21 +0,0 @@
-LIBRARY()
-
-NO_UTIL()
-
-OWNER(nga)
-
-IF (OS_ANDROID)
- PEERDIR(
- library/cpp/malloc/system
- )
-ELSE()
- PEERDIR(
- library/cpp/malloc/api
- contrib/libs/jemalloc
- )
- SRCS(
- malloc-info.cpp
- )
-ENDIF()
-
-END()
diff --git a/library/cpp/malloc/system/malloc-info.cpp b/library/cpp/malloc/system/malloc-info.cpp
deleted file mode 100644
index ab6742e203..0000000000
--- a/library/cpp/malloc/system/malloc-info.cpp
+++ /dev/null
@@ -1,9 +0,0 @@
-#include <library/cpp/malloc/api/malloc.h>
-
-using namespace NMalloc;
-
-TMallocInfo NMalloc::MallocInfo() {
- TMallocInfo r;
- r.Name = "system";
- return r;
-}
diff --git a/library/cpp/malloc/system/ya.make b/library/cpp/malloc/system/ya.make
deleted file mode 100644
index 7dd2d6d9d4..0000000000
--- a/library/cpp/malloc/system/ya.make
+++ /dev/null
@@ -1,17 +0,0 @@
-LIBRARY()
-
-NO_UTIL()
-
-OWNER(nga)
-
-DISABLE(OPENSOURCE_EXPORT)
-
-PEERDIR(
- library/cpp/malloc/api
-)
-
-SRCS(
- malloc-info.cpp
-)
-
-END()
diff --git a/library/cpp/malloc/tcmalloc/ya.make b/library/cpp/malloc/tcmalloc/ya.make
deleted file mode 100644
index 21372ff9e2..0000000000
--- a/library/cpp/malloc/tcmalloc/ya.make
+++ /dev/null
@@ -1,15 +0,0 @@
-LIBRARY()
-
-NO_UTIL()
-
-OWNER(ayles)
-
-PEERDIR(
- library/cpp/malloc/api
- contrib/libs/tcmalloc/malloc_extension
-)
-SRCS(
- malloc-info.cpp
-)
-
-END()
diff --git a/library/cpp/malloc/ya.make b/library/cpp/malloc/ya.make
deleted file mode 100644
index 0ec9db71d2..0000000000
--- a/library/cpp/malloc/ya.make
+++ /dev/null
@@ -1,26 +0,0 @@
-RECURSE(
- api
- api/helpers
- api/ut
- tcmalloc
- galloc
- jemalloc
- lockless
- nalf
- sample-client
- system
- mimalloc
- mimalloc/link_test
- hu
- hu/link_test
-)
-
-IF (NOT OS_WINDOWS)
- RECURSE(
- calloc
- calloc/tests
- calloc/calloc_profile_diff
- calloc/calloc_profile_scan
- calloc/calloc_profile_scan/ut
- )
-ENDIF()