Kernel+ProcessManager: Expose the number of kmalloc/kfree calls.

This will be very helpful in tracking down unwanted kmalloc traffic. :^)
This commit is contained in:
Andreas Kling 2019-04-15 19:43:12 +02:00
commit e9c0f4567d
Notes: sideshowbarker 2024-07-19 14:42:02 +09:00
5 changed files with 25 additions and 8 deletions

View file

@ -18,4 +18,5 @@ private:
GLabel* m_user_physical_pages_label { nullptr };
GLabel* m_supervisor_physical_pages_label { nullptr };
GLabel* m_kmalloc_label { nullptr };
GLabel* m_kmalloc_count_label { nullptr };
};