summaryrefslogtreecommitdiff
path: root/Kernel/Syscalls
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-08-07 11:51:52 +0200
committerAndreas Kling <kling@serenityos.org>2021-08-07 12:29:26 +0200
commit5acb7e4eba28466f209c69eecd5b4747d400d56a (patch)
tree9e6665f097cbb08d858b582d7c327045194be754 /Kernel/Syscalls
parent02c72de09000be101b13e0df92216114c5c65284 (diff)
downloadserenity-5acb7e4eba28466f209c69eecd5b4747d400d56a.zip
Kernel: Remove outdated FIXME about ProcessHandle
ProcessHandle hasn't been a thing since Process became ref-counted.
Diffstat (limited to 'Kernel/Syscalls')
-rw-r--r--Kernel/Syscalls/setpgid.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/Kernel/Syscalls/setpgid.cpp b/Kernel/Syscalls/setpgid.cpp
index bfceefad36..f9832b9f58 100644
--- a/Kernel/Syscalls/setpgid.cpp
+++ b/Kernel/Syscalls/setpgid.cpp
@@ -80,7 +80,6 @@ KResultOr<FlatPtr> Process::sys$setpgid(pid_t specified_pid, pid_t specified_pgi
{
VERIFY_PROCESS_BIG_LOCK_ACQUIRED(this)
REQUIRE_PROMISE(proc);
- // FIXME: Use a ProcessHandle
ProcessID pid = specified_pid ? ProcessID(specified_pid) : this->pid();
if (specified_pgid < 0) {
// The value of the pgid argument is less than 0, or is not a value supported by the implementation.