首页 > 其他分享 >在使用vs2010调试时大量出现iso_whid,HR PROPAGATED 信息

在使用vs2010调试时大量出现iso_whid,HR PROPAGATED 信息

时间:2023-06-09 16:34:34浏览次数:46  
标签:39 HR whid vs2010 dbgview iso 2011 PM


//z 9/5/2011 2:39 PM@is2

.netframework4.0 iso_whid 错误

在用visual studio 2010 调试时会向dbgview输出大量的如下信息:

*** HR propagated: -2147024774
[8092] ***   Source File: d:\iso_whid\x86fre\base\isolation\com

找了下有以下这些解决方案
1.在dbgview中设置过滤器
在dbgview中添加如下的excludefilters。
Workaround is to add some Exclude filters, but doesn't exclude blank lines:

*originated*;*iso_whid*;*propagated*; ;
 
2. 使用tracespy
另一个类似dbgview的项目
http://tracespy.codeplex.com/
//z 9/5/2011 2:39 PM@is2120@csdn
3. 禁用混合调试模式
This output is occuring inside the .NET runtime, and only appears when attachedwith a native debugger (usually because you are doing interop debugging). If you do not need to be doing interop debugging, disabling mixed modedebugging and enabling only managed debugging will prevent this output fromappearing.

4. 安装更新包
http://support.microsoft.com/kb/2468871 安装更新包:NDP40-KB2468871-v2-x64.exe
安装看了下,似乎不成



//z 9/5/2011 2:39 PM@is2120@csdn



5. 没有PID的话,那么空行将不会被输出


3:24 PM 2012-12-5


If you can live without them , uncheck the menu item Options \ Win32 PIDs and then don't get the spurious blank lines


标签:39,HR,whid,vs2010,dbgview,iso,2011,PM
From: https://blog.51cto.com/u_16156420/6449069

相关文章

  • [ABC166F] Three Variables Game
    ThreeVariablesGameの传送门Solution首先,我们每次操作只会修改两个数。所以考虑dfs枚举操作的顺序,但是这让时间复杂度变为\(O(2^n)\),不能接受。但是,我们可以判断当a<0||b<0||c<0时,就退出,这样可以减少绝大部分状态。边界条件:当枚玩\(n\)个后,输出用\(ans......
  • chrome 跨域问题解决
    1.后端设置了跨域,https下可以,http不可以高版本chrome配置了策略,如果访问私有网络,会出现禁止跨域chrome://flags/#block-insecure-private-network-requestsBlockinsecureprivatenetworkrequests.......
  • Three.js教程:常见光源类型
    推荐:将NSDT场景编辑器加入你的3D工具链其他系列工具:NSDT简石数字孪生常见光源类型Threejs虚拟光源是对自然界光照的模拟,threejs搭建虚拟场景的时候,为了更好的渲染场景,往往需要设置不同的光源,设置不同的光照强度,就像摄影师给你拍照要设置各种辅助灯光一样。环境光AmbientLight......
  • 遇到chrome_options.add_experimental_option ("debuggerAddress", port_number)调起
    1、查看谷歌版本和chromedriver版本是否一致:手动查找ChromeDriver路径。在终端中输入以下命令:whichchromedriver这将输出ChromeDriver的路径,例如:/usr/local/bin/chromedriver可以在Chrome浏览器中输入以下网址来查看版本信息: chrome://version/在命令行中,你可以......
  • ManagementEventWatcher throws ManagementException with call to Stop()
    参考网址: https://stackoverflow.com/questions/46100105/managementeventwatcher-throws-managementexception-with-call-to-stop0Ihavethefollowingpieceofcodethatalwaysthrowsanexception:Thestacktraceisasfollows:System.Management.ManagementException:......
  • ThreadLocal 与 synchronized 区别
    老实说,从看到这个帖子的题目开始,就觉得帖子的作者估计是在概念上有所混淆了,于是乎想写个咚咚,同大家分享一下自己的心得。帖子上,讨论的人很多,高手不乏,各抒己见,但不知新手们看明白没有,因此,这里偶以最简洁列表方式来说一说相关问题。1.区别ThreadLocal与synchronizedThread......
  • vue2.0运行导入的项目出现node:events:491 throw er; // Unhandled ‘error‘ event错
    错误提示:Apprunningat: -Local: http://localhost:8080/ -Network:unavailable Notethatthedevelopmentbuildisnotoptimized. Tocreateaproductionbuild,runnpmrunbuild.node:events:491 thrower;//Unhandled'error'event在尝试过关闭占用端......
  • vue2.0运行导入的项目出现node:events:491 throw er; // Unhandled ‘error‘ event错
    错误提示:Apprunningat: -Local: http://localhost:8080/ -Network:unavailable Notethatthedevelopmentbuildisnotoptimized. Tocreateaproductionbuild,runnpmrunbuild.node:events:491 thrower;//Unhandled'error'event在尝试过关闭占用端......
  • NewBing:在Chrome中免费使用ChatGPT4
    ChatGPT4相对于3.5优势相较于ChatGPT3.5,ChatGPT4有以下优势:更大的模型规模:ChatGPT4有超过16亿个参数,是ChatGPT3.5的4倍之多,这意味着它可以处理更复杂的对话场景和更长的对话历史。更好的对话质量:ChatGPT4经过更多的训练和优化,可以生成更加自然、连贯和有逻辑的对......
  • 使用THREEJS实现一个可调节档位、可摇头的电风扇
    夏天到了,用Three.js实现一个可以摇头和调节档位的电风扇。主要使用到Blender处理3D模型,用Vite+Typescript搭建项目框架。效果演示:一、处理模型1、从爱(bai)给(gei)网下载一个风扇的3D模型,在Blender中打开,给模型贴上图。2、拆解模型。将风扇模型拆解成按钮、底座、扇叶、头部......