mirror of
https://github.com/fluencelabs/musl
synced 2025-06-27 05:32:06 +00:00
global cleanup to use the new syscall interface
This commit is contained in:
@ -4,5 +4,5 @@
|
||||
int execve(const char *path, char *const argv[], char *const envp[])
|
||||
{
|
||||
/* do we need to use environ if envp is null? */
|
||||
return syscall3(__NR_execve, (long)path, (long)argv, (long)envp);
|
||||
return syscall(SYS_execve, path, argv, envp);
|
||||
}
|
||||
|
@ -7,11 +7,11 @@ pid_t fork(void)
|
||||
{
|
||||
pid_t ret;
|
||||
if (libc.fork_handler) libc.fork_handler(-1);
|
||||
ret = syscall0(__NR_fork);
|
||||
ret = syscall(SYS_fork);
|
||||
if (libc.lock && !ret) {
|
||||
pthread_t self = __pthread_self();
|
||||
self->pid = syscall0(__NR_getpid);
|
||||
self->tid = syscall0(__NR_gettid);
|
||||
self->pid = syscall(SYS_getpid);
|
||||
self->tid = syscall(SYS_gettid);
|
||||
libc.threads_minus_1 = 0;
|
||||
}
|
||||
if (libc.fork_handler) libc.fork_handler(!ret);
|
||||
|
@ -4,5 +4,5 @@
|
||||
pid_t vfork(void)
|
||||
{
|
||||
/* vfork syscall cannot be made from C code */
|
||||
return syscall0(__NR_fork);
|
||||
return syscall(SYS_fork);
|
||||
}
|
||||
|
@ -3,5 +3,5 @@
|
||||
|
||||
int waitid(idtype_t type, id_t id, siginfo_t *info, int options)
|
||||
{
|
||||
return syscall5(__NR_waitid, type, id, (long)info, options, 0);
|
||||
return syscall(SYS_waitid, type, id, info, options, 0);
|
||||
}
|
||||
|
@ -3,5 +3,5 @@
|
||||
|
||||
pid_t waitpid(pid_t pid, int *status, int options)
|
||||
{
|
||||
return syscall4(__NR_wait4, pid, (long)status, options, 0);
|
||||
return syscall(SYS_wait4, pid, status, options, 0);
|
||||
}
|
||||
|
Reference in New Issue
Block a user