include cleanups: remove unused headers and add feature test macros
[musl] / src / process / fork.c
index 7530ff9..1a82f42 100644 (file)
@@ -1,12 +1,21 @@
 #include <unistd.h>
+#include <string.h>
 #include "syscall.h"
 #include "libc.h"
 #include "pthread_impl.h"
 
+static void dummy(int x)
+{
+}
+
+weak_alias(dummy, __fork_handler);
+
 pid_t fork(void)
 {
        pid_t ret;
-       if (libc.fork_handler) libc.fork_handler(-1);
+       sigset_t set;
+       __fork_handler(-1);
+       __block_all_sigs(&set);
        ret = syscall(SYS_fork);
        if (libc.main_thread && !ret) {
                pthread_t self = __pthread_self();
@@ -15,6 +24,7 @@ pid_t fork(void)
                libc.threads_minus_1 = 0;
                libc.main_thread = self;
        }
-       if (libc.fork_handler) libc.fork_handler(!ret);
+       __restore_sigs(&set);
+       __fork_handler(!ret);
        return ret;
 }