Skip to content

Commit

Permalink
aarch64: Fix __sigset build issue on muslC
Browse files Browse the repository at this point in the history
Described in issue libunwind#176.   Taken from Alpine Linux project.

Change __sigset_t to sigset_t
  • Loading branch information
djwatson committed May 27, 2020
1 parent 6f2cc23 commit 5df1555
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/libunwind-aarch64.h
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,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;

Expand Down

0 comments on commit 5df1555

Please sign in to comment.