1 #if defined LINUX_MIPSO32 2 /* 3 * offsetof(struct sigframe, sf_mask) == 4 * sizeof(sf_ass) + sizeof(sf_pad) + sizeof(struct sigcontext) 5 */ 6 const long addr = mips_REG_SP + 6 * 4 + 7 sizeof(struct sigcontext); 8 #else 9 /* 10 * This decodes rt_sigreturn. 11 * The 64-bit ABIs do not have sigreturn. 12 * 13 * offsetof(struct rt_sigframe, rs_uc) == 14 * sizeof(sf_ass) + sizeof(sf_pad) + sizeof(struct siginfo) 15 */ 16 const long addr = mips_REG_SP + 6 * 4 + 128 + 17 offsetof(struct ucontext, uc_sigmask); 18 #endif 19 20 tprints("{mask="); 21 print_sigset_addr_len(tcp, addr, NSIG / 8); 22 tprints("}"); 23