include cleanups: remove unused headers and add feature test macros
[musl] / src / process / fork.c
index fb8a430..1a82f42 100644 (file)
@@ -13,7 +13,9 @@ weak_alias(dummy, __fork_handler);
 pid_t fork(void)
 {
        pid_t ret;
+       sigset_t set;
        __fork_handler(-1);
+       __block_all_sigs(&set);
        ret = syscall(SYS_fork);
        if (libc.main_thread && !ret) {
                pthread_t self = __pthread_self();
@@ -22,6 +24,7 @@ pid_t fork(void)
                libc.threads_minus_1 = 0;
                libc.main_thread = self;
        }
+       __restore_sigs(&set);
        __fork_handler(!ret);
        return ret;
 }