• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 long addr;
2 
3 if (upeek(tcp->pid, REG_FP, &addr) < 0)
4 	return 0;
5 addr += offsetof(struct sigcontext, sc_mask);
6 
7 tprints("{mask=");
8 print_sigset_addr_len(tcp, addr, NSIG / 8);
9 tprints("}");
10