PowerPC, add support for recording pipe2 system call.
authorCarl Love <cel@us.ibm.com>
Mon, 31 Oct 2022 18:43:47 +0000 (14:43 -0400)
committerCarl Love <cel@us.ibm.com>
Mon, 31 Oct 2022 18:43:47 +0000 (14:43 -0400)
Test gdb.reverse/pipe-reverse.exp fails on Power 10 running the fedora 36
distro.  The gdb record error message is:

  Process record and replay target doesn't support syscall number 317.

System call 317 on PowerPC maps to the pipe2 system call.

This patch adds support for the missing pipe2 system call for PowerPC.

Patch fixes the test failure in gdb.reverse/pipe-reverse.exp.

The patch has been tested on Power 10 with no regression failures.

gdb/ppc-linux-tdep.c

index 14800619cbe4b91a5dca754aa321752232acbd1d..cc5a26431ba54967462c3b7eefed71951499f998 100644 (file)
@@ -1400,6 +1400,8 @@ ppc_canonicalize_syscall (int syscall, int wordsize)
       else
        result = gdb_sys_fstatat64;
     }
+  else if (syscall == 317)
+    result = gdb_sys_pipe2;
   else if (syscall == 336)
     result = gdb_sys_recv;
   else if (syscall == 337)