mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-01 21:59:07 +00:00
Kernel: Use Userspace<T> for the times syscall
This commit is contained in:
parent
e7728ca8fd
commit
7943655838
Notes:
sideshowbarker
2024-07-19 04:06:14 +09:00
Author: https://github.com/bgianfo
Commit: 7943655838
Pull-request: https://github.com/SerenityOS/serenity/pull/3062
Reviewed-by: https://github.com/awesomekling
2 changed files with 12 additions and 7 deletions
|
@ -278,7 +278,7 @@ public:
|
|||
int sys$fcntl(int fd, int cmd, u32 extra_arg);
|
||||
int sys$ioctl(int fd, unsigned request, FlatPtr arg);
|
||||
int sys$mkdir(Userspace<const char*> pathname, size_t path_length, mode_t mode);
|
||||
clock_t sys$times(tms*);
|
||||
clock_t sys$times(Userspace<tms*>);
|
||||
int sys$utime(Userspace<const char*> pathname, size_t path_length, Userspace<const struct utimbuf*>);
|
||||
int sys$link(Userspace<const Syscall::SC_link_params*>);
|
||||
int sys$unlink(const char* pathname, size_t path_length);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue