mirror of
https://github.com/RGBCube/serenity
synced 2025-06-02 13:38:17 +00:00
26 lines
488 B
C++
26 lines
488 B
C++
#pragma once
|
|
|
|
#include <AK/Types.h>
|
|
#include <VirtualFileSystem/SyntheticFileSystem.h>
|
|
|
|
class Process;
|
|
|
|
class ProcFS final : public SynthFS {
|
|
public:
|
|
static ProcFS& the() PURE;
|
|
|
|
virtual ~ProcFS() override;
|
|
static RetainPtr<ProcFS> create();
|
|
|
|
virtual bool initialize() override;
|
|
virtual const char* class_name() const override;
|
|
|
|
void add_process(Process&);
|
|
void remove_process(Process&);
|
|
|
|
private:
|
|
ProcFS();
|
|
|
|
HashMap<pid_t, InodeIndex> m_pid2inode;
|
|
};
|
|
|