|
@@ -75,10 +75,16 @@ int __libc_sigaction (int sig, const struct sigaction *act, struct sigaction *oa
|
|
|
}
|
|
|
|
|
|
#ifndef LIBC_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
|
|
|
|
|
|
+
|
|
|
|
|
|
code below. GDB needs some intimate knowledge about it to
|
|
|
recognize them as signal trampolines, and make backtraces through
|