blob: bcd47c97a6e117e16c9c4bf534a26b56edc6aec8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#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.threaded && !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;
}
|