Reputation: 113
what commands are there to identify the stack that exists for a particular process?
Upvotes: 0
Views: 73
Reputation: 141850
pstack will print a stack trace of a running process.
pstack
See man pstack for more information.
man pstack
Upvotes: 1
Reputation: 25606
You could use gdb.
gdb
$ gdb <program> <pid> gdb> bt