mirror of git://git.musl-libc.org/musl
remove no-longer-needed unblocking of signals in pthread_create
this action is now performed in pthread_self initialization; it must be performed there in case the first call to pthread_create is from a signal handler, in which case the old signal mask could be restored on return from the signal.
This commit is contained in:
parent
9372655e88
commit
1e597a3e9b
|
@ -95,7 +95,6 @@ int pthread_create(pthread_t *res, const pthread_attr_t *attr, void *(*entry)(vo
|
||||||
init_file_lock(__stdin_used);
|
init_file_lock(__stdin_used);
|
||||||
init_file_lock(__stdout_used);
|
init_file_lock(__stdout_used);
|
||||||
init_file_lock(__stderr_used);
|
init_file_lock(__stderr_used);
|
||||||
__syscall(SYS_rt_sigprocmask, SIG_UNBLOCK, SIGPT_SET, 0, 8);
|
|
||||||
libc.threaded = 1;
|
libc.threaded = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue