mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 04:07:44 +00:00
Kernel: Use Userspace<T> for the execve syscall
This commit is contained in:
parent
025a2a3c5b
commit
0f42463eab
5 changed files with 8 additions and 8 deletions
|
@ -257,7 +257,7 @@ public:
|
|||
int sys$ttyname(int fd, Userspace<char*>, size_t);
|
||||
int sys$ptsname(int fd, Userspace<char*>, size_t);
|
||||
pid_t sys$fork(RegisterState&);
|
||||
int sys$execve(const Syscall::SC_execve_params*);
|
||||
int sys$execve(Userspace<const Syscall::SC_execve_params*>);
|
||||
int sys$dup(int oldfd);
|
||||
int sys$dup2(int oldfd, int newfd);
|
||||
int sys$sigaction(int signum, const sigaction* act, sigaction* old_act);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue