Resolve line numbers from a stack dump

I have an application with a mutex dead lock. This program is compiled with CC and the flag 杇.

With pstack(pid) I get a proper stack dump with symbol names and hex addresses.

Is there any way to resolve those hex addresses to line numbers from the source file?

GNU got a tool named addr2line which solve this problem, is there any corresponding tools for Solaris 10?

[391 byte] By [Joakim] at [2007-11-26 10:52:54]
# 1
Don't know about addr2line analogue (maybe you can build it on Solaris, too), but there's always an option to use dbx: - attach to the process with 'dbx - pid'- issue 'where' in dbx console
MaximKartashev at 2007-7-7 3:05:51 > top of Java-index,Development Tools,Solaris and Linux Development Tools...
# 2
Thanks, dbx solved my problem.
Joakim at 2007-7-7 3:05:51 > top of Java-index,Development Tools,Solaris and Linux Development Tools...