1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 14:07:46 +00:00

Kernel: Implement the killpg() syscall

This commit is contained in:
Sergey Bugaev 2019-11-14 19:16:30 +03:00 committed by Andreas Kling
parent 1e1ddce9d8
commit d29a078ab3
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;