strace/linux/avr32/get_scno.c

8 lines
140 B
C
Raw Normal View History

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