search for: p_pidp

Displaying 1 result from an estimated 1 matches for "p_pidp".

Did you mean: p_pid
2008 Oct 01
5
ustack()s of SIGSEGV''ed programs
.... All the stacks printed in trap()/sigtoproc() context do not have meaningful symbols. The following solves the problem to some degree but I''d much rather have a self-contained D script. dtrace -w -n ''fbt:genunix:sigtoproc:entry/arg2 == 11/ { self->pid=((proc_t *)arg0)->p_pidp->pid_id; stop(); system("/usr/bin/gcore %d", self->pid); system("/usr/bin/prun %d", self->pid); }'' Any ideas (or code) will be appreciated, v.