Kernel: Make Socket inherit from File.

This commit is contained in:
Andreas Kling 2019-05-03 20:42:43 +02:00
commit 2470fdcd9b
Notes: sideshowbarker 2024-07-19 14:18:05 +09:00
18 changed files with 81 additions and 73 deletions

View file

@ -18,7 +18,7 @@ public:
virtual bool can_write(FileDescriptor&) const override { return true; }
virtual int write(FileDescriptor&, const byte*, int) override { return -EIO; }
virtual String absolute_path() const override;
virtual String absolute_path(FileDescriptor&) const override;
void did_syscall(dword function, dword arg1, dword arg2, dword arg3, dword result);
pid_t pid() const { return m_pid; }