Sync with header files from other architectures.

This commit is contained in:
Ulrich Drepper 1999-11-13 18:01:36 +00:00
parent 4f00306675
commit bed17a1d19

View File

@ -25,7 +25,20 @@
struct sigaction
{
/* Signal handler. */
#ifdef __USE_POSIX199309
union
{
/* Used if SA_SIGINFO is not set. */
__sighandler_t sa_handler;
/* Used if SA_SIGINFO is set. */
void (*sa_sigaction) __PMT ((int, siginfo_t *, void *));
}
__sigaction_handler;
# define sa_handler __sigaction_handler.sa_handler
# define sa_sigaction __sigaction_handler.sa_sigaction
#else
__sighandler_t sa_handler;
#endif
/* Additional set of signals to be blocked. */
__sigset_t sa_mask;