mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 20:29:18 +00:00
Kernel: Use Userspace<T> for the clock_nanosleep syscall
This commit is contained in:
parent
baa070afb8
commit
84035e1035
Notes:
sideshowbarker
2024-07-19 04:18:11 +09:00
Author: https://github.com/bgianfo
Commit: 84035e1035
Pull-request: https://github.com/SerenityOS/serenity/pull/2996
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