1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-22 03:25:07 +00:00

SystemMonitor: Split up kmalloc labels

Otherwise, the numbers overflow the space after a while.
This commit is contained in:
Ben Wiederhake 2020-08-02 16:35:49 +02:00 committed by Andreas Kling
parent cb167ea388
commit cd39eea7a9
2 changed files with 12 additions and 6 deletions

View file

@ -45,6 +45,8 @@ private:
GraphWidget& m_graph;
RefPtr<GUI::Label> m_user_physical_pages_label;
RefPtr<GUI::Label> m_supervisor_physical_pages_label;
RefPtr<GUI::Label> m_kmalloc_label;
RefPtr<GUI::Label> m_kmalloc_space_label;
RefPtr<GUI::Label> m_kmalloc_count_label;
RefPtr<GUI::Label> m_kfree_count_label;
RefPtr<GUI::Label> m_kmalloc_difference_label;
};