Mehdi Tondravi wrote: > Is there a way to get the symbolic name for stack back trace (e.g. jstack(30, > 2500))? > I get hex addresses and have tried out various things but still do not get > symbolic name.
I've never played with Java & DTrace, but if the regular pid provider is anything to go by, this happens because the stack is recorded at the time the probe fires, but the matching of addresses to symbols happens somewhat later. If the application being traced has meanwhile disappeared, there's nothing to match to, and you get hex output. Could that explain what you're seeing? HTH Michael -- Michael Schuster http://blogs.sun.com/recursion Recursion, n.: see 'Recursion' _______________________________________________ dtrace-discuss mailing list [email protected]
