diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2012-01-28 21:57:49 +0100 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2012-01-28 21:57:49 +0100 |
commit | 31f48281ed551634b3c2cfcfcde81ca6e208e5f9 (patch) | |
tree | 0f4f9974154e4c90ab7d39568489f34511cbedac /libc/sysdeps/linux/avr32 | |
parent | 83ce0cc4d5e93549f0a9447a9bd6b051f5f1b62f (diff) |
*: if !HAS_THREADS strong alias sigaction
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'libc/sysdeps/linux/avr32')
-rw-r--r-- | libc/sysdeps/linux/avr32/sigaction.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/avr32/sigaction.c b/libc/sysdeps/linux/avr32/sigaction.c index 61530912e..f5e586c9a 100644 --- a/libc/sysdeps/linux/avr32/sigaction.c +++ b/libc/sysdeps/linux/avr32/sigaction.c @@ -38,6 +38,11 @@ int __libc_sigaction(int sig, const struct sigaction *act, } #ifndef LIBC_SIGACTION -weak_alias(__libc_sigaction, sigaction) +# ifndef __UCLIBC_HAS_THREADS__ +strong_alias(__libc_sigaction,sigaction) +libc_hidden_def(sigaction) +# else +weak_alias(__libc_sigaction,sigaction) libc_hidden_weak(sigaction) +# endif #endif |