1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 02:17:35 +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

@ -427,7 +427,7 @@ struct SC_unveil_params {
struct SC_waitid_params {
int idtype;
int id;
struct siginfo* infop;
Userspace<struct siginfo*> infop;
int options;
};