global cleanup to use the new syscall interface

This commit is contained in:
Rich Felker
2011-03-20 00:16:43 -04:00
parent be82e122bf
commit aa398f56fa
160 changed files with 180 additions and 238 deletions

View File

@ -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);
}

View File

@ -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);

View File

@ -4,5 +4,5 @@
pid_t vfork(void)
{
/* vfork syscall cannot be made from C code */
return syscall0(__NR_fork);
return syscall(SYS_fork);
}

View File

@ -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);
}

View File

@ -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);
}