blob: 685f2de69f18c858f91ad19b9710321bb9b1c5c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
/*
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <Kernel/Process.h>
namespace Kernel {
ErrorOr<FlatPtr> 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<void> {
if (protected_data.ppid != this->pid())
return ECHILD;
protected_data.ppid = 0;
return {};
}));
process->disowned_by_waiter(*this);
return 0;
}
}
|