Kernel: Support FIONBIO ioctl

This commit is contained in:
2026-07-20 04:07:23 +03:00
parent 583c2437b4
commit 51b9dcebbc
3 changed files with 31 additions and 2 deletions
@@ -34,6 +34,7 @@ namespace Kernel
BAN::ErrorOr<int> dup2(int, int);
BAN::ErrorOr<int> fcntl(int fd, int cmd, uintptr_t extra);
BAN::ErrorOr<long> ioctl(int fd, unsigned long request, void* arg);
BAN::ErrorOr<off_t> seek(int fd, off_t offset, int whence);
BAN::ErrorOr<off_t> tell(int) const;