musl/src/process/fork.c
Rich Felker e2915eeeea speed up threaded fork
after fork, we have a new process and the pid is equal to the tid of
the new main thread. there is no need to make two separate syscalls to
obtain the same number.
2011-04-12 17:52:14 -04:00

19 lines
395 B
C

#include <unistd.h>
#include "syscall.h"
#include "libc.h"
#include "pthread_impl.h"
pid_t fork(void)
{
pid_t ret;
if (libc.fork_handler) libc.fork_handler(-1);
ret = syscall(SYS_fork);
if (libc.lock && !ret) {
pthread_t self = __pthread_self();
self->tid = self->pid = syscall(SYS_getpid);
libc.threads_minus_1 = 0;
}
if (libc.fork_handler) libc.fork_handler(!ret);
return ret;
}