1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-23 19:42:07 +00:00

UserspaceEmulator: Remove debug spam about tracked malloc blocks

This commit is contained in:
Andreas Kling 2021-03-10 15:21:26 +01:00
parent 0e18c7ffda
commit ced8dfa037

View file

@ -95,8 +95,6 @@ void MallocTracer::target_did_malloc(Badge<Emulator>, FlatPtr address, size_t si
// Mark the containing mmap region as a malloc block! // Mark the containing mmap region as a malloc block!
mmap_region.set_malloc(true); mmap_region.set_malloc(true);
dbgln("Tracking malloc block @ {:p} with chunk_size={}, chunk_count={}", malloc_data.address, malloc_data.chunk_size, malloc_data.mallocations.size());
} }
auto* mallocation = mmap_region.malloc_metadata()->mallocation_for_address(address); auto* mallocation = mmap_region.malloc_metadata()->mallocation_for_address(address);
VERIFY(mallocation); VERIFY(mallocation);