/* * Copyright (c) 2018-2020, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #include #include namespace Kernel { KResultOr Process::do_waitid(idtype_t idtype, int id, int options) { KResultOr result = KResult(KSuccess); if (Thread::current()->block({}, options, idtype, id, result).was_interrupted()) return EINTR; VERIFY(!result.is_error() || (options & WNOHANG) || result.error() != KSuccess); return result; } KResultOr Process::sys$waitid(Userspace user_params) { REQUIRE_PROMISE(proc); Syscall::SC_waitid_params params; if (!copy_from_user(¶ms, user_params)) return EFAULT; switch (params.idtype) { case P_ALL: case P_PID: case P_PGID: break; default: return EINVAL; } dbgln_if(PROCESS_DEBUG, "sys$waitid({}, {}, {}, {})", params.idtype, params.id, params.infop, params.options); auto siginfo_or_error = do_waitid(static_cast(params.idtype), params.id, params.options); if (siginfo_or_error.is_error()) return siginfo_or_error.error(); if (!copy_to_user(params.infop, &siginfo_or_error.value())) return EFAULT; return 0; } }