Kernel/LibC: remove SYS_TERMID

This syscall is not needed. /dev/tty is already a symlink to the
controlling terminal. Also this syscall did not handle pseudo terminals
This commit is contained in:
2026-01-16 15:57:36 +02:00
parent 1d07151743
commit 0299d4d44e
4 changed files with 1 additions and 23 deletions

View File

@@ -218,8 +218,6 @@ namespace Kernel
BAN::ErrorOr<long> sys_tcgetpgrp(int fd);
BAN::ErrorOr<long> sys_tcsetpgrp(int fd, pid_t pgid);
BAN::ErrorOr<long> sys_termid(char*);
BAN::ErrorOr<long> sys_clock_gettime(clockid_t, timespec*);
BAN::ErrorOr<long> sys_load_keymap(const char* path);