Implement signals, finally! #30

Merged
apio merged 14 commits from finally-signals into main 2023-07-10 20:16:00 +00:00
Showing only changes of commit e0b5acb2ab - Show all commits

View File

@ -15,7 +15,11 @@ struct sigaction
__simple_sighandler_t sa_handler;
sigset_t sa_mask;
int sa_flags;
#ifdef __cplusplus
void* __sa_sigreturn = nullptr;
#else
void* __sa_sigreturn;
#endif
};
// Constants for the 'how' parameter in sigprocmask().