mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-28 21:26:22 +00:00
Kernel: Use Userspace<T> for the uname syscall
This commit is contained in:
parent
cfedd62b5c
commit
8dd78201a4
Notes:
sideshowbarker
2024-07-19 04:05:40 +09:00
Author: https://github.com/bgianfo
Commit: 8dd78201a4
Pull-request: https://github.com/SerenityOS/serenity/pull/3062
Reviewed-by: https://github.com/awesomekling
2 changed files with 13 additions and 7 deletions
|
@ -252,7 +252,7 @@ public:
|
|||
int sys$clock_nanosleep(Userspace<const Syscall::SC_clock_nanosleep_params*>);
|
||||
int sys$gethostname(Userspace<char*>, ssize_t);
|
||||
int sys$sethostname(Userspace<const char*>, ssize_t);
|
||||
int sys$uname(utsname*);
|
||||
int sys$uname(Userspace<utsname*>);
|
||||
int sys$readlink(Userspace<const Syscall::SC_readlink_params*>);
|
||||
int sys$ttyname(int fd, Userspace<char*>, size_t);
|
||||
int sys$ptsname(int fd, Userspace<char*>, size_t);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue