mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 10:32:43 +00:00 
			
		
		
		
	 e4e5fa74d0
			
		
	
	
		e4e5fa74d0
		
	
	
	
	
		
			
			There's no such supervisor pages concept, so there's no need to call physical pages with the "user_physical" prefix anymore.
		
			
				
	
	
		
			45 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
 | |
|  * Copyright (c) 2022, the SerenityOS developers.
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <LibGUI/Widget.h>
 | |
| 
 | |
| namespace SystemMonitor {
 | |
| 
 | |
| class GraphWidget;
 | |
| 
 | |
| class MemoryStatsWidget final : public GUI::Widget {
 | |
|     C_OBJECT(MemoryStatsWidget)
 | |
| public:
 | |
|     static MemoryStatsWidget* the();
 | |
| 
 | |
|     virtual ~MemoryStatsWidget() override = default;
 | |
| 
 | |
|     void set_graph_widget(GraphWidget& graph);
 | |
| 
 | |
|     void set_graph_widget_via_name(String name);
 | |
|     String graph_widget_name();
 | |
| 
 | |
|     void refresh();
 | |
| 
 | |
| private:
 | |
|     MemoryStatsWidget(GraphWidget* graph);
 | |
|     MemoryStatsWidget();
 | |
| 
 | |
|     GraphWidget* m_graph;
 | |
|     // Is null if we have a valid graph
 | |
|     String m_graph_widget_name {};
 | |
|     RefPtr<GUI::Label> m_physical_pages_label;
 | |
|     RefPtr<GUI::Label> m_physical_pages_committed_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;
 | |
| };
 | |
| 
 | |
| }
 |