Kernel: Remove unnecessary raise syscall

This commit is contained in:
2023-12-06 13:00:45 +02:00
parent 336daa2cc5
commit cdcc36efde
5 changed files with 10 additions and 21 deletions

View File

@@ -137,7 +137,6 @@ namespace Kernel
BAN::ErrorOr<long> sys_tty_ctrl(int fildes, int command, int flags);
BAN::ErrorOr<long> sys_signal(int, void (*)(int));
BAN::ErrorOr<long> sys_raise(int signal);
static BAN::ErrorOr<long> sys_kill(pid_t pid, int signal);
BAN::ErrorOr<long> sys_tcsetpgrp(int fd, pid_t pgid);