1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 14:28:12 +00:00

Kernel: Use Userspace<T> for the clock_nanosleep syscall

This commit is contained in:
Brian Gianforcaro 2020-08-04 22:24:45 -07:00 committed by Andreas Kling
parent baa070afb8
commit 84035e1035
3 changed files with 5 additions and 6 deletions

View file

@ -282,8 +282,8 @@ struct SC_poll_params {
struct SC_clock_nanosleep_params {
int clock_id;
int flags;
const struct timespec* requested_sleep;
struct timespec* remaining_sleep;
Userspace<const struct timespec*> requested_sleep;
Userspace<struct timespec*> remaining_sleep;
};
struct SC_sendto_params {