(root)/
strace-6.5/
src/
linux/
generic/
arch_pt_regs.c
       1  static void
       2  arch_decode_pt_regs(struct tcb *const tcp, const kernel_ulong_t addr)
       3  {
       4  	arch_decode_prstatus_regset(tcp, addr,
       5  #if HAVE_ARCH_PRSTATUS_REGSET
       6  			sizeof(struct_prstatus_regset)
       7  #else
       8  			0
       9  #endif
      10  		);
      11  }