summary refs log tree commit diff stats
path: root/linux-user
diff options
context:
space:
mode:
authorHelge Deller <deller@gmx.de>2023-01-15 12:35:17 +0100
committerLaurent Vivier <laurent@vivier.eu>2023-02-03 22:55:12 +0100
commitdfd8c5e9b383c36ed6d9559afe331a38967998a8 (patch)
tree59f941a8d69c9c9777f7c498c807393794ed4352 /linux-user
parent6003159ce18faad4e1bc7bf9c85669019cd4950e (diff)
downloadfocaccia-qemu-dfd8c5e9b383c36ed6d9559afe331a38967998a8.tar.gz
focaccia-qemu-dfd8c5e9b383c36ed6d9559afe331a38967998a8.zip
linux-user: Add strace output for clock_getres_time64() and futex_time64()
Add the two syscalls to strace output to avoid "Unknown syscall" message.

Signed-off-by: Helge Deller <deller@gmx.de>
Reviewed-by: Laurent Vivier <laurent@vivier.eu>
Message-Id: <20230115113517.25143-1-deller@gmx.de>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'linux-user')
-rw-r--r--linux-user/strace.list6
1 files changed, 6 insertions, 0 deletions
diff --git a/linux-user/strace.list b/linux-user/strace.list
index bb21c05414..64db8e6b84 100644
--- a/linux-user/strace.list
+++ b/linux-user/strace.list
@@ -86,6 +86,9 @@
 { TARGET_NR_clock_getres, "clock_getres" , NULL, print_clock_getres,
                           print_syscall_ret_clock_getres },
 #endif
+#ifdef TARGET_NR_clock_getres_time64
+{ TARGET_NR_clock_getres_time64, "clock_getres_time64" , NULL, NULL, NULL },
+#endif
 #ifdef TARGET_NR_clock_gettime
 { TARGET_NR_clock_gettime, "clock_gettime" , NULL, print_clock_gettime,
                            print_syscall_ret_clock_gettime },
@@ -275,6 +278,9 @@
 #ifdef TARGET_NR_futex
 { TARGET_NR_futex, "futex" , NULL, print_futex, NULL },
 #endif
+#ifdef TARGET_NR_futex_time64
+{ TARGET_NR_futex_time64, "futex_time64" , NULL, NULL, NULL },
+#endif
 #ifdef TARGET_NR_futimesat
 { TARGET_NR_futimesat, "futimesat" , NULL, print_futimesat, NULL },
 #endif