serenity/Kernel/ProcFileSystem.h
Andreas Kling 3e532ac7b6 Process now maps regions immediately when they are allocated.
This avoids having to do a separate MM.mapRegionsForTask() pass.

Also, more Task => Process renaming that I apparently hadn't saved yet.
2018-11-01 13:15:46 +01:00

27 lines
537 B
C++

#pragma once
#include <AK/Types.h>
#include <VirtualFileSystem/SyntheticFileSystem.h>
class Process;
class ProcFileSystem final : public SyntheticFileSystem {
public:
static ProcFileSystem& the() PURE;
virtual ~ProcFileSystem() override;
static RetainPtr<ProcFileSystem> create();
virtual bool initialize() override;
virtual const char* className() const override;
void addProcess(Process&);
void removeProcess(Process&);
private:
ProcFileSystem();
HashMap<pid_t, InodeIndex> m_pid2inode;
};