Skip to content

Commit

Permalink
linux-user: Add strace output for timer_settime64() syscall
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
hdeller authored and vivier committed Nov 2, 2022
1 parent af804f3 commit 8b95210
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion linux-user/strace.list
Expand Up @@ -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 },
Expand Down

0 comments on commit 8b95210

Please sign in to comment.