From b1813e5dae176ddabafad4e69084e08f3a972c54 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 7 Feb 2021 17:12:32 +0100 Subject: [PATCH] Kernel: Remove some unused declarations from Process --- Kernel/Process.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/Kernel/Process.h b/Kernel/Process.h index 2acf335f4e..a0e1e40c5d 100644 --- a/Kernel/Process.h +++ b/Kernel/Process.h @@ -274,8 +274,6 @@ public: int sys$getcwd(Userspace, size_t); int sys$chdir(Userspace, size_t); int sys$fchdir(int fd); - int sys$sleep(unsigned seconds); - int sys$usleep(useconds_t usec); int sys$adjtime(Userspace, Userspace); int sys$gettimeofday(Userspace); int sys$clock_gettime(clockid_t, Userspace); @@ -375,7 +373,6 @@ public: static void initialize(); [[noreturn]] void crash(int signal, u32 eip, bool out_of_memory = false); - static void reap(Process&); [[nodiscard]] siginfo_t wait_info(); const TTY* tty() const { return m_tty; }