summaryrefslogtreecommitdiff
path: root/Kernel/Syscalls/disown.cpp
blob: b18c139b5a51fe5e3c238666c62464bcb6b68de4 (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
/*
 * 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_PROCESS_BIG_LOCK_ACQUIRED(this);
    REQUIRE_PROMISE(proc);
    auto process = Process::from_pid(pid);
    if (!process)
        return ESRCH;
    if (process->ppid() != this->pid())
        return ECHILD;
    ProtectedDataMutationScope scope(*process);
    process->m_protected_values.ppid = 0;
    process->disowned_by_waiter(*this);
    return 0;
}
}