use libc-internal malloc for pthread_atfork
[musl] / src / signal / siglongjmp.c
index d0e4f67..bc317ac 100644 (file)
@@ -1,11 +1,9 @@
 #include <setjmp.h>
 #include <signal.h>
-#include <stdlib.h>
 #include "syscall.h"
+#include "pthread_impl.h"
 
 _Noreturn void siglongjmp(sigjmp_buf buf, int ret)
 {
-       if (buf->__fl) __syscall(SYS_rt_sigprocmask, SIG_SETMASK,
-               buf->__ss, 0, __SYSCALL_SSLEN);
-       longjmp(buf->__jb, ret);
+       longjmp(buf, ret);
 }