Stack Trace..
-
I am using windbg for stack trace a crash in my program. Kb command gives only this stack trace.. ChildEBP RetAddr Args to Child 0012fd60 00000000 77c5aca0 00000000 0012fdb0 MyProg!_output+0x18 I don't see any other callstack and RetAddr.. Can anyone let me know how can I get more info about the cause of the stack..
-
I am using windbg for stack trace a crash in my program. Kb command gives only this stack trace.. ChildEBP RetAddr Args to Child 0012fd60 00000000 77c5aca0 00000000 0012fdb0 MyProg!_output+0x18 I don't see any other callstack and RetAddr.. Can anyone let me know how can I get more info about the cause of the stack..
The standard command I issue is "
kvn 1000
". Of simply select "View->Call Stack" and use the button to select what you're interested in. Steve