packages/utils/strace/patches/01-linux_sigcontext.patch
florian 98365f351d Upgrade strace to 4.5.14 (latest), differentiate sigcontext when we have 2.4 or 2.6 kernel (#959), should also fix #668
git-svn-id: svn://svn.openwrt.org/openwrt/packages@5531 3c298f89-4303-0410-b956-a3cf2f4a3e73
2006-11-14 14:45:20 +00:00

15 lines
393 B
Diff

--- strace-4.5.11/signal.c 2005-02-02 05:16:54.000000000 +0100
+++ strace-4.5.11.new/signal.c 2006-11-14 15:33:54.000000000 +0100
@@ -1422,7 +1422,11 @@
if (umove(tcp, sp, &sc) < 0)
return 0;
tcp->u_arg[0] = 1;
+#ifdef LINUX_2_4
tcp->u_arg[1] = sc.sc_sigset;
+#else
+ tcp->u_arg[1] = sc.sc_hi2;
+#endif
} else {
tcp->u_rval = tcp->u_error = 0;
if(tcp->u_arg[0] == 0)