1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 06:48:12 +00:00

DevPtsFS: Do not assume there is one of it

Unfortunately, that also means it can no longer inherit from SynthFS.
This commit is contained in:
Sergey Bugaev 2019-08-16 18:46:18 +03:00 committed by Andreas Kling
parent 37cc80fb96
commit 66a0a12435
5 changed files with 188 additions and 45 deletions

View file

@ -13,7 +13,7 @@ SlavePTY::SlavePTY(MasterPTY& master, unsigned index)
m_tty_name = String::format("/dev/pts/%u", m_index);
set_uid(current->process().uid());
set_gid(current->process().gid());
DevPtsFS::the().register_slave_pty(*this);
DevPtsFS::register_slave_pty(*this);
set_size(80, 25);
}
@ -22,7 +22,7 @@ SlavePTY::~SlavePTY()
#ifdef SLAVEPTY_DEBUG
dbgprintf("~SlavePTY(%u)\n", m_index);
#endif
DevPtsFS::the().unregister_slave_pty(*this);
DevPtsFS::unregister_slave_pty(*this);
}
String SlavePTY::tty_name() const