mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 15:48:12 +00:00
Kernel: Use Userspace<T> for the getresuid syscall
This commit is contained in:
parent
7943655838
commit
3ca18a88d7
2 changed files with 2 additions and 2 deletions
|
@ -216,7 +216,7 @@ public:
|
|||
gid_t sys$getegid();
|
||||
pid_t sys$getpid();
|
||||
pid_t sys$getppid();
|
||||
int sys$getresuid(uid_t*, uid_t*, uid_t*);
|
||||
int sys$getresuid(Userspace<uid_t*>, Userspace<uid_t*>, Userspace<uid_t*>);
|
||||
int sys$getresgid(gid_t*, gid_t*, gid_t*);
|
||||
mode_t sys$umask(mode_t);
|
||||
int sys$open(Userspace<const Syscall::SC_open_params*>);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue