Skip to content

Commit

Permalink
linux-user: Add strace output for clock_getres_time64() and futex_tim…
Browse files Browse the repository at this point in the history
…e64()

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>
  • Loading branch information
hdeller authored and vivier committed Feb 3, 2023
1 parent 6003159 commit dfd8c5e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions linux-user/strace.list
Expand Up @@ -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 },
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit dfd8c5e

Please sign in to comment.