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.
21 lines
449 B
21 lines
449 B
#define arch_set_scno s390_set_scno
|
|
#define ARCH_REGSET s390_regset
|
|
#include "../s390/set_scno.c"
|
|
#undef ARCH_REGSET
|
|
#undef arch_set_scno
|
|
|
|
#define arch_set_scno s390x_set_scno
|
|
#define ARCH_REGSET s390x_regset
|
|
#include "../s390/set_scno.c"
|
|
#undef ARCH_REGSET
|
|
#undef arch_set_scno
|
|
|
|
static int
|
|
arch_set_scno(struct tcb *tcp, kernel_ulong_t scno)
|
|
{
|
|
if (tcp->currpers == 1)
|
|
return s390_set_scno(tcp, scno);
|
|
else
|
|
return s390x_set_scno(tcp, scno);
|
|
}
|