1 #ifndef ARCH_REGSET 2 # define ARCH_REGSET s390_regset 3 #endif 4 5 static int arch_set_scno(struct tcb * tcp,kernel_ulong_t scno)6arch_set_scno(struct tcb *tcp, kernel_ulong_t scno) 7 { 8 ARCH_REGSET.gprs[2] = scno; 9 return set_regs(tcp->pid); 10 } 11