All Questions
3 questions
0
votes
1
answer
276
views
Way to track all functions in Visual Studio / Nice debugger for VS
1)There is call stack provided in VS but isn't always show the sequence of functions called by user's code.It just shows functions from windows & directly the function you put break point on & ...
2
votes
3
answers
395
views
Why does the debugger need symbols to reconstruct the stack?
When debugging in Visual Studio, if symbols for a call stack are missing, for example:
00 > HelloWorld.exe!my_function(int y=42) Line 291
01 dynlib2.dll!10011435()
[Frames below may be ...
6
votes
6
answers
12k
views
Call Stack at Runtime
I want to access the call stack at runtime in a Native C++ application. I am not using the IDE. How do I display the call stack?
Update: I have a function which is called from many points all over ...