diff options
author | Carmelo Amoroso <carmelo.amoroso@st.com> | 2007-11-19 15:35:12 +0000 |
---|---|---|
committer | Carmelo Amoroso <carmelo.amoroso@st.com> | 2007-11-19 15:35:12 +0000 |
commit | 414d8e5f2a73aff8e9404684571a65f85b27bf89 (patch) | |
tree | 879ac217d477f76cf965b244d98b383b663ff47b /libpthread/nptl/sysdeps/pthread/sigaction.c | |
parent | 381fb7688d356f03e35b9254796adb29c941532b (diff) | |
download | uClibc-alpine-414d8e5f2a73aff8e9404684571a65f85b27bf89.tar.bz2 uClibc-alpine-414d8e5f2a73aff8e9404684571a65f85b27bf89.tar.xz |
Synch nptl branch with SH port: as requested by sjhill for mips-ash4 merge
Diffstat (limited to 'libpthread/nptl/sysdeps/pthread/sigaction.c')
-rw-r--r-- | libpthread/nptl/sysdeps/pthread/sigaction.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/libpthread/nptl/sysdeps/pthread/sigaction.c b/libpthread/nptl/sysdeps/pthread/sigaction.c index 17443654d..54b5d2de4 100644 --- a/libpthread/nptl/sysdeps/pthread/sigaction.c +++ b/libpthread/nptl/sysdeps/pthread/sigaction.c @@ -31,6 +31,9 @@ # include <sigaction.c> int +sigaction (int sig, const struct sigaction *act, struct sigaction *oact); + +int __sigaction (int sig, const struct sigaction *act, struct sigaction *oact) { if (__builtin_expect (sig == SIGCANCEL || sig == SIGSETXID, 0)) @@ -41,9 +44,9 @@ __sigaction (int sig, const struct sigaction *act, struct sigaction *oact) return __libc_sigaction (sig, act, oact); } -libc_hidden_weak (__sigaction) +libc_hidden_proto(sigaction) weak_alias (__sigaction, sigaction) - +libc_hidden_weak(sigaction) #else # include_next <sigaction.c> |