mirror of
https://github.com/fluencelabs/musl
synced 2025-06-14 07:21:40 +00:00
global cleanup to use the new syscall interface
This commit is contained in:
@ -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);
|
||||
|
Reference in New Issue
Block a user