You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
667 B
21 lines
667 B
diff -rup a/sysdeps/linux-gnu/ppc/trace.c b/sysdeps/linux-gnu/ppc/trace.c
|
|
--- a/sysdeps/linux-gnu/ppc/trace.c 2021-02-08 14:35:16.876494095 -0500
|
|
+++ b/sysdeps/linux-gnu/ppc/trace.c 2021-02-08 15:05:59.468107311 -0500
|
|
@@ -57,6 +57,7 @@ get_arch_dep(struct process *proc)
|
|
}
|
|
|
|
#define SYSCALL_INSN 0x44000002
|
|
+#define SYSCALL2_INSN 0x44000001
|
|
|
|
/* Returns 1 if syscall, 2 if sysret, 0 otherwise. */
|
|
int
|
|
@@ -75,7 +76,7 @@ syscall_p(struct process *proc, int stat
|
|
0);
|
|
#endif
|
|
|
|
- if (insn == SYSCALL_INSN) {
|
|
+ if (insn == SYSCALL_INSN || insn == SYSCALL2_INSN) {
|
|
*sysnum =
|
|
(int)ptrace(PTRACE_PEEKUSER, proc->pid,
|
|
sizeof(long) * PT_R0, 0);
|