diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2011-03-13 01:06:12 +0100 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2012-06-15 14:00:22 +0200 |
commit | 8976e173e7286816cde4a5a6730d23aed203492e (patch) | |
tree | 1a7dcaa1d1eb6e662960be514859c5231d071149 | |
parent | 3c3f899b6d2ff68d3d6f1ef8f752218d8dd594ea (diff) |
alpha/__syscall_rt_sigaction.S: make the function hidden on non-NPTL
Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
-rw-r--r-- | libc/sysdeps/linux/alpha/__syscall_rt_sigaction.S | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/alpha/__syscall_rt_sigaction.S b/libc/sysdeps/linux/alpha/__syscall_rt_sigaction.S index f7e9e44a6..3d29a08e6 100644 --- a/libc/sysdeps/linux/alpha/__syscall_rt_sigaction.S +++ b/libc/sysdeps/linux/alpha/__syscall_rt_sigaction.S @@ -31,6 +31,9 @@ .text .globl __syscall_rt_sigaction +#ifndef __UCLIBC_HAS_THREADS_NATIVE__ +.hidden __syscall_rt_sigaction +#endif .align 4 .ent __syscall_rt_sigaction, 0 __syscall_rt_sigaction: |