Lines Matching refs:psp
380 thread_call_stack(void *data, const lwpstatus_t *psp, in thread_call_stack() argument
396 if (psp) in thread_call_stack()
397 call_stack(h, psp); in thread_call_stack()
413 const lwpstatus_t *psp, const lwpsinfo_t *pip) in lwp_call_stack() argument
422 if (psp) in lwp_call_stack()
423 call_stack(h, psp); in lwp_call_stack()
635 print_syscall(const lwpstatus_t *psp, prgregset_t reg) in print_syscall() argument
641 (void) proc_sysname(psp->pr_syscall, sname, sizeof (sname)); in print_syscall()
643 for (i = 0; i < psp->pr_nsysarg; i++) in print_syscall()
644 (void) printf((i+1 == psp->pr_nsysarg)? "%lx" : "%lx, ", in print_syscall()
645 (long)psp->pr_sysarg[i]); in print_syscall()
650 call_stack(pstack_handle_t *h, const lwpstatus_t *psp) in call_stack() argument
654 (void) memcpy(reg, psp->pr_reg, sizeof (reg)); in call_stack()
656 if ((psp->pr_flags & (PR_ASLEEP|PR_VFORKP)) || in call_stack()
657 ((psp->pr_flags & PR_ISTOP) && in call_stack()
658 (psp->pr_why == PR_SYSENTRY || in call_stack()
659 psp->pr_why == PR_SYSEXIT))) { in call_stack()
660 print_syscall(psp, reg); in call_stack()