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:
parent
1e1ddce9d8
commit
d29a078ab3
2 changed files with 59 additions and 18 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue