Skip to content

Commit

Permalink
[ANDROID] Fixed definition of android_sigaction_t
Browse files Browse the repository at this point in the history
  • Loading branch information
ptitSeb committed Dec 27, 2024
1 parent 4fd59da commit ae512cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/include/signals.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ typedef struct x64_sigaction_s {

#ifdef ANDROID
typedef struct android_sigaction_s {
int sa_flags;
union {
sighandler_t _sa_handler;
void (*_sa_sigaction)(int, siginfo_t *, void *);
} _u;
sigset_t sa_mask;
uint32_t sa_flags;
void (*sa_restorer)(void);
} android_sigaction_t;
#endif
Expand Down

0 comments on commit ae512cc

Please sign in to comment.