diff options
| author | Mike Barcroft <mike@FreeBSD.org> | 2002-12-29 01:50:22 +0000 |
|---|---|---|
| committer | Mike Barcroft <mike@FreeBSD.org> | 2002-12-29 01:50:22 +0000 |
| commit | 17d44bffffa60b3a05e31328427038619f226725 (patch) | |
| tree | 75e3d3438c41843b64afb16f91dcb644fe6c8094 | |
| parent | 90bf91002508bee5f1ebac6ed81d507eca083001 (diff) | |
Notes
| -rw-r--r-- | sys/sys/signal.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/sys/signal.h b/sys/sys/signal.h index 6e0d5ad45790..a3e0cd8564df 100644 --- a/sys/sys/signal.h +++ b/sys/sys/signal.h @@ -217,11 +217,12 @@ struct sigaction { int sa_flags; /* see signal options below */ sigset_t sa_mask; /* signal mask to apply */ }; -#endif -#if __XSI_VISIBLE /* if SA_SIGINFO is set, sa_sigaction is to be used instead of sa_handler. */ #define sa_handler __sigaction_u.__sa_handler +#endif + +#if __XSI_VISIBLE #define sa_sigaction __sigaction_u.__sa_sigaction #endif |
