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:
parent
baa070afb8
commit
84035e1035
3 changed files with 5 additions and 6 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue