dtoolutil: Set system malloc tag to mimalloc when enabled

This commit is contained in:
rdb 2022-03-01 15:12:38 +01:00
parent b401884f1c
commit 70415af210

View File

@ -58,6 +58,8 @@ PandaSystem() :
set_system_tag("system", "malloc", "dlmalloc");
#elif defined(USE_MEMORY_PTMALLOC2)
set_system_tag("system", "malloc", "ptmalloc2");
#elif defined(USE_MEMORY_MIMALLOC)
set_system_tag("system", "malloc", "mimalloc");
#else
set_system_tag("system", "malloc", "malloc");
#endif