mirror of
https://github.com/fluencelabs/musl
synced 2025-04-25 23:32:15 +00:00
make fork properly initialize the main thread in the child process
This commit is contained in:
parent
6dc05fbe19
commit
3f5420bcda
@ -1,12 +1,19 @@
|
|||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include "syscall.h"
|
#include "syscall.h"
|
||||||
#include "libc.h"
|
#include "libc.h"
|
||||||
|
#include "pthread_impl.h"
|
||||||
|
|
||||||
pid_t fork(void)
|
pid_t fork(void)
|
||||||
{
|
{
|
||||||
pid_t ret;
|
pid_t ret;
|
||||||
if (libc.fork_handler) libc.fork_handler(-1);
|
if (libc.fork_handler) libc.fork_handler(-1);
|
||||||
ret = syscall0(__NR_fork);
|
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);
|
if (libc.fork_handler) libc.fork_handler(!ret);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user