Kernel/LibC: Implement SYS_ISATTY and isatty()

This commit is contained in:
2024-06-03 03:36:25 +03:00
parent 6346d1b6c7
commit aec5a09caf
4 changed files with 17 additions and 0 deletions

View File

@@ -162,6 +162,8 @@ namespace Kernel
BAN::ErrorOr<long> sys_smo_delete(SharedMemoryObjectManager::Key);
BAN::ErrorOr<long> sys_smo_map(SharedMemoryObjectManager::Key);
BAN::ErrorOr<long> sys_isatty(int fildes);
BAN::ErrorOr<long> sys_tty_ctrl(int fildes, int command, int flags);
BAN::ErrorOr<long> sys_signal(int, void (*)(int));