Prechádzať zdrojové kódy

Kernel: Write to debug log when creating new kmalloc subheaps

Andreas Kling 3 rokov pred
rodič
commit
d58880b5b0
1 zmenil súbory, kde vykonal 1 pridanie a 0 odobranie
  1. 1 0
      Kernel/Heap/kmalloc.cpp

+ 1 - 0
Kernel/Heap/kmalloc.cpp

@@ -55,6 +55,7 @@ struct KmallocGlobalData {
 
 
     void add_subheap(u8* storage, size_t storage_size)
     void add_subheap(u8* storage, size_t storage_size)
     {
     {
+        dbgln("Adding kmalloc subheap @ {} with size {}", storage, storage_size);
         auto* subheap = new (storage) KmallocSubheap(storage + PAGE_SIZE, storage_size - PAGE_SIZE);
         auto* subheap = new (storage) KmallocSubheap(storage + PAGE_SIZE, storage_size - PAGE_SIZE);
         subheaps.append(*subheap);
         subheaps.append(*subheap);
     }
     }