aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/malloc/tcmalloc/malloc-info.cpp
blob: fbcfa7ee06a57f833a747a44a77e5e4c46689eeb (plain) (blame)
1
2
3
4
5
6
7
8
9
#include <library/cpp/malloc/api/malloc.h>

using namespace NMalloc;

TMallocInfo NMalloc::MallocInfo() {
    TMallocInfo r;
    r.Name = "tcmalloc";
    return r;
}