aboutsummaryrefslogtreecommitdiffstats
path: root/main/libunwind/fix-aarch64-sigset_t.patch
blob: 7abc61c41a99bb009a4fffbf81464d0d4060994e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
diff --git a/include/libunwind-aarch64.h b/include/libunwind-aarch64.h
index 778b436..926fbbc 100644
--- a/include/libunwind-aarch64.h
+++ b/include/libunwind-aarch64.h
@@ -34,6 +34,7 @@ extern "C" {
 #include <inttypes.h>
 #include <stddef.h>
 #include <ucontext.h>
+#include <signal.h>
 
 #define UNW_TARGET      aarch64
 #define UNW_TARGET_AARCH64      1
@@ -192,7 +193,7 @@ typedef struct
 	unsigned long uc_flags;
 	struct ucontext *uc_link;
 	stack_t uc_stack;
-	__sigset_t uc_sigmask;
+	sigset_t uc_sigmask;
 	struct unw_sigcontext uc_mcontext;
   } unw_tdep_context_t;