diff options
author | Joel Stanley <joel@jms.id.au> | 2025-08-26 15:33:40 +0930 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2025-08-28 07:18:30 +1000 |
commit | f91563d011a0439cd6709e169cdfac268779d562 (patch) | |
tree | 12d787f104eaf4d5ccd14efd968018ad16cf6455 | |
parent | e191623fb0694a08c372fb68c5634969addbcb7b (diff) | |
download | qemu-f91563d011a0439cd6709e169cdfac268779d562.zip qemu-f91563d011a0439cd6709e169cdfac268779d562.tar.gz qemu-f91563d011a0439cd6709e169cdfac268779d562.tar.bz2 |
linux-user: Add strace for rseq
build/qemu-riscv64 -cpu rv64,v=on -d strace build/tests/tcg/riscv64-linux-user/test-vstart-overflow
1118081 riscv_hwprobe(0xffffbc038200,1,0,0,0,0) = 0
1118081 brk(NULL) = 0x0000000000085000
1118081 brk(0x0000000000085b00) = 0x0000000000085b00
1118081 set_tid_address(0x850f0) = 1118081
1118081 set_robust_list(0x85100,24) = -1 errno=38 (Function not implemented)
1118081 rseq(0x857c0,32,0,0xf1401073) = -1 errno=38 (Function not implemented)
Signed-off-by: Joel Stanley <joel@jms.id.au>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-ID: <20250826060341.1118670-1-joel@jms.id.au>
-rw-r--r-- | linux-user/strace.list | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/linux-user/strace.list b/linux-user/strace.list index ab81835..51b5ead 100644 --- a/linux-user/strace.list +++ b/linux-user/strace.list @@ -1719,3 +1719,6 @@ #ifdef TARGET_NR_riscv_hwprobe { TARGET_NR_riscv_hwprobe, "riscv_hwprobe" , "%s(%p,%d,%d,%d,%d,%d)", NULL, NULL }, #endif +#ifdef TARGET_NR_rseq +{ TARGET_NR_rseq, "rseq" , "%s(%p,%u,%d,%#x)", NULL, NULL }, +#endif |