您的位置:首页 > 其它

About Basic Debugging

2014-01-21 00:44 253 查看
原文链接:http://msdn.microsoft.com/en-us/library/windows/desktop/ms679266%28v=vs.85%29.aspx

本文链接:/article/2122632.html

The debugging functions can be used to create a basic, event-driven debugger. 调试函数可以用来创建基本的事件驱动的调试器。Event-driven means that the debugger is notified every time certain events occur in the process being debugged. 事件驱动是指每次在被调试进程发生的某个事件都会通知调试器。Notification
enables the debugger to take appropriate action in response to the events.通知可以是调试器对事件作出适当的响应。

For an overview of debugging terms, see Debugging Terminology.对调试项的概述参见调试技术。

Debug Support from Process, Thread, and Exception Functions describes the debugging-specific features of certain process, thread, and exception-handling functions.来自进程、线程、异常函数的调试支持描述了某个进程、线程、异常处理函数的调试特性。

Creating a Basic Debugger describes using the basic debugging functions to create a simple debugger. 创建基本的调试器使用基本的调试函数来创建一个简单的调试器。These functions enable an application to wait for debugging events, cause breakpoint exceptions, transfer execution control to
the debugger, and so on.这些函数允许应用程序等待调试事件、引起断点异常、转让执行控制权给调试器等。

Debugging Events describes the debug event mechanism. Debugging events cause the system to notify the debugger.调试事件描述了调试事件机制。调试事件引起系统通知调试器。

Debugging Terminology 调试技术 http://blog.csdn.net/wlsgzl/article/details/18573937
Debug Support from Process, Thread, and Exception Functions 来自进程、线程、异常处理函数的调试支持/article/2122634.html
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: