mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-12-17 21:26:13 -07:00
linux-user: Have do_syscall() use CPUArchState* instead of void*
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20220509205728.51912-3-philippe.mathieu.daude@gmail.com> Signed-off-by: Laurent Vivier <laurent@vivier.eu>
This commit is contained in:
parent
2f6f4290e0
commit
a0939b8916
6 changed files with 129 additions and 129 deletions
|
|
@ -18,10 +18,10 @@
|
|||
#ifndef LINUX_USER_STRACE_H
|
||||
#define LINUX_USER_STRACE_H
|
||||
|
||||
void print_syscall(void *cpu_env, int num,
|
||||
void print_syscall(CPUArchState *cpu_env, int num,
|
||||
abi_long arg1, abi_long arg2, abi_long arg3,
|
||||
abi_long arg4, abi_long arg5, abi_long arg6);
|
||||
void print_syscall_ret(void *cpu_env, int num, abi_long ret,
|
||||
void print_syscall_ret(CPUArchState *cpu_env, int num, abi_long ret,
|
||||
abi_long arg1, abi_long arg2, abi_long arg3,
|
||||
abi_long arg4, abi_long arg5, abi_long arg6);
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue