Kernel: Handle TTY ioctls on all inodes not implementing it

This reduces debug spam while compiling software
This commit is contained in:
2026-05-20 16:55:08 +03:00
parent 6045726e41
commit 14aa28b043
3 changed files with 17 additions and 18 deletions

View File

@@ -35,8 +35,6 @@ namespace Kernel
virtual bool has_error_impl() const override { return m_reading_count == 0; }
virtual bool has_hungup_impl() const override { return m_writing_count == 0; }
virtual BAN::ErrorOr<long> ioctl_impl(int, void*) override;
private:
Pipe(const struct stat&);