/* * Copyright (c) 2020, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #include namespace Kernel { ErrorOr Process::sys$disown(ProcessID pid) { VERIFY_NO_PROCESS_BIG_LOCK(this); TRY(require_promise(Pledge::proc)); auto process = Process::from_pid_in_same_jail(pid); if (!process) return ESRCH; TRY(process->with_mutable_protected_data([this](auto& protected_data) -> ErrorOr { if (protected_data.ppid != this->pid()) return ECHILD; protected_data.ppid = 0; return {}; })); process->disowned_by_waiter(*this); return 0; } }