Home | History | Annotate | Download | only in xtensa
      1 /* Return codes: 1 - ok, 0 - ignore, other - error. */
      2 static int
      3 arch_get_scno(struct tcb *tcp)
      4 {
      5 	return upeek(tcp, SYSCALL_NR, &tcp->scno) < 0 ? -1 : 1;
      6 }
      7