android_mt6572_jiabo/external/strace/linux/bfin/get_scno.c
2025-09-05 16:56:03 +08:00

6 lines
163 B
C

/* Return codes: 1 - ok, 0 - ignore, other - error. */
static int
arch_get_scno(struct tcb *tcp)
{
return upeek(tcp->pid, PT_ORIG_P0, &tcp->scno) < 0 ? -1 : 1;
}