Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1452034
  • 博文数量: 596
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 173
  • 用 户 组: 普通用户
  • 注册时间: 2016-07-06 15:50
个人简介

在线笔记

文章分类

全部博文(596)

文章存档

2016年(1)

2015年(104)

2014年(228)

2013年(226)

2012年(26)

2011年(11)

分类: Windows平台

2014-04-20 22:14:05

(v=vs.85).aspx
  1. By default, symbol information is not actually loaded when the target modules are loaded. Instead, symbols are loaded by the debugger as they are needed. This is called deferred symbol loading or lazy symbol loading. When this option is enabled, the debugger loads symbols whenever it encounters an unrecognized symbol.
  2. (默认情况下,符号信息在模板模块加载时才加载。因此这些还未加载但可以的符号信息叫做延迟符号加载货懒惰符号加载)
  3. When deferred symbol loading is disabled, process startup can be much slower, because all symbols are read whenever a module is loaded.
  4. In WinDbg, the deferred symbol loading behavior can be modified for symbols that have no module prefix by using the Resolve Unqualified Symbols option on the Debug menu.
  5. You can override deferred symbol loading by using the ld (Load Symbols) command or the .reload (Reload Module) command with the /f option. These force the specified symbols to be loaded immediately, although the loading of other symbols is deferred. If the symbol path is changed, symbols are not automatically reloaded.
  6. (ld(加载符号)或.reload(重载模块), ld wdm 或.reload wdm /f
  7. By default, deferred symbol loading is enabled. In CDB and KD, the -scommand-line option will turn this option off. It can also be turned off in CDB by using the LazyLoad variable in the tools.ini file. Once the debugger is running, this option can be turned on or off by using .symopt+0x4 or .symopt-0x4, respectively.



阅读(1527) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~