on x86_64 use long instead of long long for 64bit posix types
[musl] / src / signal / siglongjmp.c
index d0e4f67..a7bcca2 100644 (file)
@@ -2,10 +2,10 @@
 #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);
+       if (buf->__fl) __restore_sigs(buf->__ss);
        longjmp(buf->__jb, ret);
 }