summaryrefslogtreecommitdiff
path: root/package/strace/patches/patch-process_c
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2014-02-23 16:29:18 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2014-02-23 16:29:18 +0100
commit48c75e98411c5023338d051d60e34e14bf2c9ff1 (patch)
tree8a2834720e440291b08b3e6950a6fee77566f5d2 /package/strace/patches/patch-process_c
parent6b6fe26dee627bbc6506b0e96ed13a55440bcd9d (diff)
patches make strace non-working on qemu sparc64 glibc, need reworking
Diffstat (limited to 'package/strace/patches/patch-process_c')
-rw-r--r--package/strace/patches/patch-process_c29
1 files changed, 0 insertions, 29 deletions
diff --git a/package/strace/patches/patch-process_c b/package/strace/patches/patch-process_c
deleted file mode 100644
index 5f53983ba..000000000
--- a/package/strace/patches/patch-process_c
+++ /dev/null
@@ -1,29 +0,0 @@
---- strace-4.8.orig/process.c 2013-05-18 00:22:19.000000000 +0200
-+++ strace-4.8/process.c 2014-01-15 12:21:31.000000000 +0100
-@@ -2857,7 +2844,7 @@ sys_sched_setscheduler(struct tcb *tcp)
- if (umove(tcp, tcp->u_arg[2], &p) < 0)
- tprintf(", %#lx", tcp->u_arg[2]);
- else
-- tprintf(", { %d }", p.__sched_priority);
-+ tprintf(", { %d }", p.sched_priority);
- }
- return 0;
- }
-@@ -2872,7 +2859,7 @@ sys_sched_getparam(struct tcb *tcp)
- if (umove(tcp, tcp->u_arg[1], &p) < 0)
- tprintf("%#lx", tcp->u_arg[1]);
- else
-- tprintf("{ %d }", p.__sched_priority);
-+ tprintf("{ %d }", p.sched_priority);
- }
- return 0;
- }
-@@ -2885,7 +2872,7 @@ sys_sched_setparam(struct tcb *tcp)
- if (umove(tcp, tcp->u_arg[1], &p) < 0)
- tprintf("%d, %#lx", (int) tcp->u_arg[0], tcp->u_arg[1]);
- else
-- tprintf("%d, { %d }", (int) tcp->u_arg[0], p.__sched_priority);
-+ tprintf("%d, { %d }", (int) tcp->u_arg[0], p.sched_priority);
- }
- return 0;
- }