Re: Getting the trace of program flow during execution without putting any debug statements
- From: "Oleg Starodumov" <com-dot-debuginfo-at-oleg>
- Date: Fri, 24 Feb 2006 01:13:00 -0800
I have a exe and source files ,which inturn invokes fuctions in dlls
My requirement is when I run the exe
I should get a listing of all the functions that were visited during
execution in the same
order that they were visited including the dll functions.
eg:
main() -> calls f1
f1() -> calls f3
f3() -> returns to f1()
f1() -> returns to main
main()
Take a look at 'wt' command in WinDbg, it should be able
to produce such a list:
http://www.microsoft.com/whdc/ddk/debugging/default.mspx
Regards,
Oleg
[VC++ MVP http://www.debuginfo.com/]
.
- References:
- Prev by Date: Getting the trace of program flow during execution without putting any debug statements
- Next by Date: static and global variables in XP
- Previous by thread: Getting the trace of program flow during execution without putting any debug statements
- Next by thread: Re: Getting the trace of program flow during execution without putting any debug statements
- Index(es):
Relevant Pages
|