Files
rk35xx-android14/external/strace/linux/m68k/get_syscall_args.c
T
hmz007 36ed224bac Rockchip Anroid14_SDK 20240628-rkr5 (2556df1a)
Signed-off-by: hmz007 <hmz007@gmail.com>
Change-Id: Ib87fdbe7a0be7dc961af3500fe9ea4589a127f9f
2024-10-29 18:12:02 +08:00

13 lines
299 B
C

/* Return -1 on error or 1 on success (never 0!). */
static int
get_syscall_args(struct tcb *tcp)
{
tcp->u_arg[0] = m68k_regs.d1;
tcp->u_arg[1] = m68k_regs.d2;
tcp->u_arg[2] = m68k_regs.d3;
tcp->u_arg[3] = m68k_regs.d4;
tcp->u_arg[4] = m68k_regs.d5;
tcp->u_arg[5] = m68k_regs.a0;
return 1;
}