问题
I am using Visual Studio 2008 for a remote debugging session with WindowsCE 6.0.
When I click 'Pause' I cannot see the program call stack.
Instead of a call stack with any functions of my program I just see a single address.
I am using the debug technique described here (or in German here)
回答1:
Your "pause" likely stopped the application somewhere in a system call so there's no "line of code" to show. Set an actual breakpoint in your code and run to that. You'll then get a call stack and all of the other niceties of a debugging environment.
回答2:
CE compiler does not support debug feature. You can debug in run time and with messageboxes unfortunately.
来源:https://stackoverflow.com/questions/8806949/windows-ce-6-remote-debugging-no-call-stack-when-pause-program