Kernel: Implement the killpg() syscall

This commit is contained in:
Sergey Bugaev 2019-11-14 19:16:30 +03:00 committed by Andreas Kling
commit d29a078ab3
Notes: sideshowbarker 2024-07-19 11:13:49 +09:00
2 changed files with 59 additions and 18 deletions

View file

@ -315,6 +315,9 @@ private:
KResultOr<Vector<String>> find_shebang_interpreter_for_executable(const String& executable_path);
KResult do_kill(Process&, int signal);
KResult do_killpg(pid_t pgrp, int signal);
Thread* m_main_thread { nullptr };
RefPtr<PageDirectory> m_page_directory;