diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2011-05-15 22:29:02 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2011-05-15 22:29:02 +0200 |
commit | 34e4b2577e0255b97f1c1660032f80829613f1a9 (patch) | |
tree | 2436b5239158e88fa0de5fa83f6a1442eeac4e69 /toolchain/uClibc/uClibc-0.9.29-fix-sa_onstack.patch.avr32 | |
parent | 59af9a8947ccb38ed4eefc02b54efcb1b1c363dd (diff) | |
parent | 7c46868238a1a6b937419f8db94e2459155b7cb0 (diff) |
Merge branch 'for-2011.05/remove-dead-code' of http://free-electrons.com/~thomas/buildroot
Diffstat (limited to 'toolchain/uClibc/uClibc-0.9.29-fix-sa_onstack.patch.avr32')
-rw-r--r-- | toolchain/uClibc/uClibc-0.9.29-fix-sa_onstack.patch.avr32 | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/toolchain/uClibc/uClibc-0.9.29-fix-sa_onstack.patch.avr32 b/toolchain/uClibc/uClibc-0.9.29-fix-sa_onstack.patch.avr32 deleted file mode 100644 index 722decdbd..000000000 --- a/toolchain/uClibc/uClibc-0.9.29-fix-sa_onstack.patch.avr32 +++ /dev/null @@ -1,31 +0,0 @@ -From 974a769cc135bcfb1ea751db34a84ed6b5ceb509 Mon Sep 17 00:00:00 2001 -From: Haavard Skinnemoen <hskinnemoen@atmel.com> -Date: Fri, 7 Dec 2007 14:02:19 +0100 -Subject: [PATCH] AVR32: Fix sa_restorer when SA_ONSTACK is set - -I don't remember exactly why we decided to pick the caller's value of -sa_restorer when SA_ONSTACK is set, but it seems to break LTP's -sigaltstack testcase. Some users have reported problems with -sigaltstack as well; hopefully this will fix it. - -Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> ---- - libc/sysdeps/linux/avr32/sigaction.c | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) - -diff --git a/libc/sysdeps/linux/avr32/sigaction.c b/libc/sysdeps/linux/avr32/sigaction.c -index a97ff3d..6dcca91 100644 ---- a/libc/sysdeps/linux/avr32/sigaction.c -+++ b/libc/sysdeps/linux/avr32/sigaction.c -@@ -30,7 +30,7 @@ int __libc_sigaction(int signum, const struct sigaction *act, - kact.k_sa_handler = act->sa_handler; - memcpy(&kact.sa_mask, &act->sa_mask, sizeof (kact.sa_mask)); - kact.sa_flags = act->sa_flags; -- if (kact.sa_flags & (SA_RESTORER | SA_ONSTACK)) -+ if (kact.sa_flags & SA_RESTORER) - kact.sa_restorer = act->sa_restorer; - else - kact.sa_restorer = __default_rt_sa_restorer; --- -1.5.3.4 - |