提交 3f5420bc 编写于 作者: R Rich Felker

make fork properly initialize the main thread in the child process

上级 6dc05fbe
#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 = syscall0(__NR_fork);
if (libc.lock && !ret) {
pthread_t self = __pthread_self();
self->pid = syscall0(__NR_getpid);
self->tid = syscall0(__NR_gettid);
libc.threads_minus_1 = 0;
}
if (libc.fork_handler) libc.fork_handler(!ret);
return ret;
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册