summaryrefslogtreecommitdiffstats
path: root/linux-user
diff options
context:
space:
mode:
authorHelge Deller2022-10-24 22:45:44 +0200
committerLaurent Vivier2022-11-02 17:21:06 +0100
commit8b95210fcb2330dd3b682ff3a5a734881baa8bef (patch)
treeb76bc8cb1ec39996773965f94d75451dc1f473fc /linux-user
parentlinux-user: Add close_range() syscall (diff)
downloadqemu-8b95210fcb2330dd3b682ff3a5a734881baa8bef.tar.gz
qemu-8b95210fcb2330dd3b682ff3a5a734881baa8bef.tar.xz
qemu-8b95210fcb2330dd3b682ff3a5a734881baa8bef.zip
linux-user: Add strace output for timer_settime64() syscall
Add missing timer_settime64() strace output and specify format for timer_settime(). Signed-off-by: Helge Deller <deller@gmx.de> Message-Id: <Y1b5eIXFoMRDcDL9@p100> Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'linux-user')
-rw-r--r--linux-user/strace.list5
1 files changed, 4 insertions, 1 deletions
diff --git a/linux-user/strace.list b/linux-user/strace.list
index cd995e5d56..3a898e2532 100644
--- a/linux-user/strace.list
+++ b/linux-user/strace.list
@@ -1534,7 +1534,10 @@
{ TARGET_NR_timer_gettime, "timer_gettime" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_timer_settime
-{ TARGET_NR_timer_settime, "timer_settime" , NULL, NULL, NULL },
+{ TARGET_NR_timer_settime, "timer_settime" , "%s(%d,%d,%p,%p)", NULL, NULL },
+#endif
+#ifdef TARGET_NR_timer_settime64
+{ TARGET_NR_timer_settime64, "timer_settime64" , "%s(%d,%d,%p,%p)", NULL, NULL },
#endif
#ifdef TARGET_NR_timerfd
{ TARGET_NR_timerfd, "timerfd" , NULL, NULL, NULL },