We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5e5046b + 589fe1c commit 417d34bCopy full SHA for 417d34b
lldb/tools/debugserver/source/MacOSX/MachVMRegion.cpp
@@ -208,7 +208,8 @@ std::vector<std::string> MachVMRegion::GetMemoryTypes() const {
208
m_data.user_tag == VM_MEMORY_MALLOC_LARGE_REUSABLE ||
209
m_data.user_tag == VM_MEMORY_MALLOC_HUGE ||
210
m_data.user_tag == VM_MEMORY_REALLOC ||
211
- m_data.user_tag == VM_MEMORY_SBRK) {
+ m_data.user_tag == VM_MEMORY_SBRK ||
212
+ m_data.user_tag == VM_MEMORY_SANITIZER) {
213
types.push_back("heap");
214
if (m_data.user_tag == VM_MEMORY_MALLOC_TINY) {
215
types.push_back("malloc-tiny");
0 commit comments