Is there a gdb (or similar) frontend that will show the program stack visually?

324 views Asked by At

Basically, I'm looking for something where I can break execution and then see a visual representation of the stack in memory. DDD doesn't have this as far as I can tell.

1

There are 1 answers

0
DJ Haus On BEST ANSWER

The Green Hills debugger, MULTI, has a display that will show you all of the function calls on the stack and their functions parameters. I'm not sure if this is what you meant by visual or not. I'm not aware of any debugger or tool that will show the hex dump of a stack and highlight it in a graphical way.

-djhaus