7 lines
158 B
C
7 lines
158 B
C
|
/* Return codes: 1 - ok, 0 - ignore, other - error. */
|
||
|
static int
|
||
|
arch_get_scno(struct tcb *tcp)
|
||
|
{
|
||
|
return upeek(tcp, SYSCALL_NR, &tcp->scno) < 0 ? -1 : 1;
|
||
|
}
|