mirror of
https://github.com/RGBCube/serenity
synced 2025-05-20 14:05:08 +00:00
ProcessManager: Rename it to SystemMonitor
This is a more appropriate name now that it does a lot more than just manage processes ^)
This commit is contained in:
parent
c7040cee62
commit
cbdda91065
23 changed files with 9 additions and 9 deletions
18
Applications/SystemMonitor/ProcessFileDescriptorMapWidget.h
Normal file
18
Applications/SystemMonitor/ProcessFileDescriptorMapWidget.h
Normal file
|
@ -0,0 +1,18 @@
|
|||
#pragma once
|
||||
|
||||
#include <LibGUI/GWidget.h>
|
||||
|
||||
class GTableView;
|
||||
|
||||
class ProcessFileDescriptorMapWidget final : public GWidget {
|
||||
C_OBJECT(ProcessFileDescriptorMapWidget);
|
||||
public:
|
||||
explicit ProcessFileDescriptorMapWidget(GWidget* parent);
|
||||
virtual ~ProcessFileDescriptorMapWidget() override;
|
||||
|
||||
void set_pid(pid_t);
|
||||
|
||||
private:
|
||||
GTableView* m_table_view { nullptr };
|
||||
pid_t m_pid { -1 };
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue