aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/malloc/system/malloc-info.cpp
diff options
context:
space:
mode:
authorrobot-piglet <robot-piglet@yandex-team.com>2023-02-20 13:44:20 +0300
committerrobot-piglet <robot-piglet@yandex-team.com>2023-02-20 13:44:20 +0300
commitebbaae7d3565a888c08e2ad0313f930a43018893 (patch)
tree6385e4f2f2fe2f7999824286940ee2723da953ba /library/cpp/malloc/system/malloc-info.cpp
parentfd76fd1f4ba82dc46fd17a0dc4c9093189aba879 (diff)
downloadydb-ebbaae7d3565a888c08e2ad0313f930a43018893.tar.gz
Intermediate changes
Diffstat (limited to 'library/cpp/malloc/system/malloc-info.cpp')
-rw-r--r--library/cpp/malloc/system/malloc-info.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/library/cpp/malloc/system/malloc-info.cpp b/library/cpp/malloc/system/malloc-info.cpp
new file mode 100644
index 0000000000..ab6742e203
--- /dev/null
+++ b/library/cpp/malloc/system/malloc-info.cpp
@@ -0,0 +1,9 @@
+#include <library/cpp/malloc/api/malloc.h>
+
+using namespace NMalloc;
+
+TMallocInfo NMalloc::MallocInfo() {
+ TMallocInfo r;
+ r.Name = "system";
+ return r;
+}