1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 05:48:12 +00:00

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
parent 13041f894f
commit e9c0f4567d
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 };
};