You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
424 B
20 lines
424 B
#ifndef HAVE_GETREGS_OLD
|
|
# define arch_set_scno i386_set_scno
|
|
# include "i386/set_scno.c"
|
|
# undef arch_set_scno
|
|
#endif /* !HAVE_GETREGS_OLD */
|
|
|
|
static int
|
|
arch_set_scno(struct tcb *tcp, kernel_ulong_t scno)
|
|
{
|
|
#ifdef HAVE_GETREGS_OLD
|
|
return upoke(tcp, 8 * ORIG_RAX, scno);
|
|
#else
|
|
if (x86_io.iov_len == sizeof(i386_regs))
|
|
return i386_set_scno(tcp, scno);
|
|
|
|
x86_64_regs.orig_rax = scno;
|
|
return set_regs(tcp->pid);
|
|
#endif
|
|
}
|