Windows CE 6 remote debugging. No call stack when pause program

时间秒杀一切 提交于 2019-12-12 03:06:42

问题


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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!