1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 12:37:45 +00:00

Kernel: Make SharedMemory inherit from File.

This commit is contained in:
Andreas Kling 2019-04-28 22:31:31 +02:00
parent a6d407fec5
commit a104d7cc93
5 changed files with 57 additions and 20 deletions

View file

@ -27,6 +27,7 @@ public:
virtual bool is_seekable() const { return false; }
virtual bool is_shared_memory() const { return false; }
virtual bool is_device() const { return false; }
virtual bool is_tty() const { return false; }
virtual bool is_master_pty() const { return false; }