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
commit 84035e1035
Notes: sideshowbarker 2024-07-19 04:18:11 +09:00
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 {