mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-24 10:22:05 -05:00
29 lines
606 B
C++
29 lines
606 B
C++
#pragma once
|
|
|
|
#include <AK/Types.h>
|
|
#include <Kernel/FileSystem/SyntheticFileSystem.h>
|
|
|
|
class Process;
|
|
class SlavePTY;
|
|
|
|
class DevPtsFS final : public SynthFS {
|
|
public:
|
|
[[gnu::pure]] static DevPtsFS& the();
|
|
|
|
virtual ~DevPtsFS() override;
|
|
static Retained<DevPtsFS> create();
|
|
|
|
virtual bool initialize() override;
|
|
virtual const char* class_name() const override;
|
|
|
|
void register_slave_pty(SlavePTY&);
|
|
void unregister_slave_pty(SlavePTY&);
|
|
|
|
private:
|
|
DevPtsFS();
|
|
|
|
Retained<SynthFSInode> create_slave_pty_device_file(unsigned index);
|
|
|
|
HashTable<SlavePTY*> m_slave_ptys;
|
|
};
|
|
|