allwinner_a64/android/external/strace/linux/powerpc/get_scno.c
2018-08-08 16:14:42 +08:00

7 lines
142 B
C

/* Return codes: 1 - ok, 0 - ignore, other - error. */
static int
arch_get_scno(struct tcb *tcp)
{
tcp->scno = ppc_regs.gpr[0];
return 1;
}