#include #include using namespace NMalloc; TMallocInfo NMalloc::MallocInfo() { TMallocInfo r; r.Name = "tcmalloc"; return r; } void NMalloc::ClearCaches() { // not available on darwin, see internal_malloc_extension.h for details #ifndef _darwin_ MallocExtension_Internal_ReleaseMemoryToSystem(std::numeric_limits::max()); #endif }