diff --git a/lib/libc/arch/alpha/sys/__sigaction14_sigtramp.c b/lib/libc/arch/alpha/sys/__sigaction14_sigtramp.c index 97a80e8f8fe2..225fc20db323 100644 --- a/lib/libc/arch/alpha/sys/__sigaction14_sigtramp.c +++ b/lib/libc/arch/alpha/sys/__sigaction14_sigtramp.c @@ -1,4 +1,4 @@ -/* $NetBSD: __sigaction14_sigtramp.c,v 1.3 2003/10/07 17:08:07 skd Exp $ */ +/* $NetBSD: __sigaction14_sigtramp.c,v 1.4 2003/10/18 18:33:51 christos Exp $ */ /*- * Copyright (c) 2002 The NetBSD Foundation, Inc. @@ -37,50 +37,42 @@ */ #include -#include +#include #include #include -#include -#include #include "extern.h" __weak_alias(__sigaction14, __libc_sigaction14) -static int have_sigreturn = -1; - -static void get_have_sigreturn(void); - -extern int __sigtramp_siginfo_2[]; -extern int __sigtramp_sigcontext_1[]; - -static void -get_have_sigreturn(void) -{ - struct sigaction nsa, osa; - - sigemptyset(&nsa.sa_mask); - nsa.sa_flags = 0; - nsa.sa_handler = SIG_IGN; - - __sigaction_sigtramp(SIGSYS, &nsa, &osa, __sigtramp_siginfo_2, 2); - - (void)syscall(SYS_compat_16___sigreturn14, NULL); - have_sigreturn = errno == EFAULT; - - __sigaction_sigtramp(SIGSYS, &osa, NULL, __sigtramp_siginfo_2, 2); -} - - int __libc_sigaction14(int sig, const struct sigaction *act, struct sigaction *oact) { - if (have_sigreturn == -1) - get_have_sigreturn(); + extern const int __sigtramp_sigcontext_1[]; + extern const int __sigtramp_siginfo_2[]; + int rv; - if (have_sigreturn && act && (act->sa_flags & SA_SIGINFO) == 0) - return __sigaction_sigtramp(sig, act, oact, + /* + * If no sigaction, use the "default" trampoline since it won't + * be used. + */ + if (act == NULL) + return __sigaction_sigtramp(sig, act, oact, NULL, 0); + + /* + * We select the non-SA_SIGINFO trampoline if SA_SIGINFO is not + * set in the sigaction. + */ + if ((act->sa_flags & SA_SIGINFO) == 0) { + rv = __sigaction_sigtramp(sig, act, oact, __sigtramp_sigcontext_1, 1); + if (rv >= 0 || errno != EINVAL) + return rv; + } + /* + * If SA_SIGINFO was specified or the compatibility trampolines + * can't be used, use the siginfo trampoline. + */ return __sigaction_sigtramp(sig, act, oact, __sigtramp_siginfo_2, 2); }