1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:47:45 +00:00

Kernel: Use Userspace<T> for the waitid syscall

This commit is contained in:
Brian Gianforcaro 2020-08-04 22:29:28 -07:00 committed by Andreas Kling
parent 84035e1035
commit 74d3b202f1
3 changed files with 3 additions and 3 deletions

View file

@ -93,7 +93,7 @@ KResultOr<siginfo_t> Process::do_waitid(idtype_t idtype, int id, int options)
}
}
pid_t Process::sys$waitid(const Syscall::SC_waitid_params* user_params)
pid_t Process::sys$waitid(Userspace<const Syscall::SC_waitid_params*> user_params)
{
REQUIRE_PROMISE(proc);