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

7 lines
145 B
C

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