2

当我使用bl命令列出windbg中的所有断点时,它输出:

1020 e 004a62b0     0001 (0001)  0:**** wtltest!`dynamic initializer for 'g_bInitialized''
1021 e 00491050     0001 (0001)  0:**** wtltest!___mb_cur_max_l_func
1022 e 0049fb50     0001 (0001)  0:**** wtltest!_ismbbprint
1023 e 004671c0     0001 (0001)  0:**** wtltest!__sbh_alloc_new_group
1024 e 00469390     0001 (0001)  0:**** wtltest!___setlc_active_func
1025 e 00463760     0001 (0001)  0:**** wtltest!Is_bad_exception_allowed
1026 e 0049b4b0     0001 (0001)  0:**** wtltest!isspace
1027 e 0044f790     0001 (0001)  0:**** wtltest!__ArrayUnwind
1028 e 00490170     0001 (0001)  0:**** wtltest!__init_monetary
1029 e 00488950     0001 (0001)  0:**** wtltest!UnDecorator::doFunctionReturns
1030 e 004883d0     0001 (0001)  0:**** wtltest!UnDecorator::getPointerTypeArray
1031 e 00456890     0001 (0001)  0:**** wtltest!_set_winver
1032 e 0049c720     0001 (0001)  0:**** wtltest!__tzset
1033 e 0049b9b0     0001 (0001)  0:**** wtltest!_iscsymf_l
1034 e 0048b770     0001 (0001)  0:**** wtltest!DNameStatusNode::length
1035 e 0045aeb0     0001 (0001)  0:**** wtltest!_wcsicmp_l
1036 e 0048be80     0001 (0001)  0:**** wtltest!_mbstowcs_s_l

我想知道哪个文件&&在哪一行的具体功能,然后我查看windbg帮助文件,它说:如果你启用了源代码行号加载,bl命令显示文件和行号信息而不是地址偏移量。

我用谷歌搜索它,.lines -e用来启用它。但仍然没有源文件 && 行号。如何获取这些信息?

4

1 回答 1

0

如果断点作为源断点输入,我相信“bl”仅显示源/行号。这就是我的经验。

于 2012-05-14T16:03:36.727 回答