mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 19:17:44 +00:00
Kernel: Use Userspace<T> for the unlink syscall
This commit is contained in:
parent
ecfe20efd2
commit
317800324c
2 changed files with 2 additions and 2 deletions
|
@ -281,7 +281,7 @@ public:
|
|||
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);
|
||||
int sys$unlink(Userspace<const char*> pathname, size_t path_length);
|
||||
int sys$symlink(Userspace<const Syscall::SC_symlink_params*>);
|
||||
int sys$rmdir(Userspace<const char*> pathname, size_t path_length);
|
||||
int sys$mount(Userspace<const Syscall::SC_mount_params*>);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue