Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

use sighandler_t instead of __sighandler_t so it compiles for musl #500

Merged
merged 1 commit into from
Jan 20, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/include/signals.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ typedef void (*sighandler_t)(int);

typedef struct x64_sigaction_s {
union {
__sighandler_t _sa_handler;
sighandler_t _sa_handler;
void (*_sa_sigaction)(int, siginfo_t *, void *);
} _u;
sigset_t sa_mask;
Expand All @@ -16,7 +16,7 @@ typedef struct x64_sigaction_s {

typedef struct x64_sigaction_restorer_s {
union {
__sighandler_t _sa_handler;
sighandler_t _sa_handler;
void (*_sa_sigaction)(int, siginfo_t *, void *);
} _u;
uint32_t sa_flags;
Expand All @@ -38,4 +38,4 @@ void fini_signal_helper();

void emit_signal(x64emu_t* emu, int sig, void* addr, int code);

#endif //__SIGNALS_H__
#endif //__SIGNALS_H__