summaryrefslogtreecommitdiff
path: root/Kernel/FileSystem/DevPtsFS.h
blob: c834b82156ba64ec15f42c24f672fd43f7160e70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#pragma once

#include <AK/Types.h>
#include <Kernel/FileSystem/SyntheticFileSystem.h>

class Process;
class SlavePTY;

class DevPtsFS final : public SynthFS {
public:
    static DevPtsFS& the();

    virtual ~DevPtsFS() override;
    static NonnullRefPtr<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();

    NonnullRefPtr<SynthFSInode> create_slave_pty_device_file(unsigned index);

    HashTable<SlavePTY*> m_slave_ptys;
};