问题:
每当我尝试在调试器中中断或设置跟踪点时,我们的应用程序和 Visual Studio 都会完全冻结。分离调试器后,应用程序继续。
此问题可能与 WPF 有关。我们已将 WinForm 应用程序迁移到 WPF。从那时起,这个问题就出现了。但我无法找到导致问题的代码的特定部分。我已经回滚了数百次提交,但没有成功。
它也可能与 UI 线程有关。如果断点设置在远离 UI 逻辑的某个位置,则应用程序将不会冻结,或者不会像 UI 线程中的某个位置那样经常冻结。
[编辑: ]
我使用 Windows 7. 64bit 和 Visual Studio 2010
[更新: ]
当 Visual Studio 挂起时,我尝试在显示断点之前分离,消息“无法从一个或多个进程分离。所有未完成的 func-evals 尚未完成”。但是我在调试选项中禁用了所有功能评估。我认为我的问题是由无法完成或超时的 func_evaluation 引起的。
有没有办法查看挂在哪个 func_evaluation 视觉工作室上?
例子:
class SomeUiViewPresenterExample
{
private Timer m_Timer;
public void Init()
{
m_Timer = new Timer();
m_Timer.Elapsed += ElapsedFoo();
m_Timer.AutoReset = false;
m_Timer.Interval = 200;
}
private void ElapsedFoo(object sender, ElapsedEventArgs elapsedEventArgs)
{
// there is no code inside this method
// On the next line a trace point with "---> ElapsedFoo called" will freeze the debugger
}
我已经尝试过的:(没有成功)
- 启用/禁用主机进程
- 尝试调试 x86 和 x64 进程
- 使用 /SafeMode 启动了 Visual Studio
- NGEN 更新
- 在调试选项中禁用“属性评估和其他隐式函数调用”
- 禁用符号服务器
- 禁用符号加载
- 删除了 WPF 字体缓存
- 用 'DebuggerDisplay("some text without expression")' 标记了几个 UI 元素
可能相关的问题:
因为我们的应用程序使用 .NET Remoting 与另一个进程通信,所以我的问题与此处类似。我已将所有对远程事件的注册放在自己的任务中,但没有成功。
调试后的 Visual Studio 的调试器输出:
我已将调试器附加到 Visual Studio 并观察到一些异常,(80010005)
但我不知道它们是否与我的问题相关:
(18d8.1708): C++ EH exception - code e06d7363 (first chance)
(18d8.1708): C++ EH exception - code e06d7363 (first chance)
..... // snip
(18d8.18dc): **Unknown exception - code 80010005 (first chance)
..... // 20 seconds freeze until breakpoint hit in IDE
(18d8.18dc): Unknown exception - code 80010005 (first chance)
(18d8.18dc): C++ EH exception - code e06d7363 (first chance)
ModLoad: 365f0000 36665000 C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\Packages\Debugger\mcee.dll
// after continue execution debugger and debugged process freezes forever
(18d8.18dc): Unknown exception - code 80010005 (first chance)
ModLoad: 00000000`02b90000 00000000`02c1c000 C:\Windows\SysWOW64\UIAutomationCore.dll
(18d8.1a8c): CLR exception - code e0434352 (first chance)
(18d8.1a8c): CLR exception - code e0434352 (first chance)
(18d8.1a8c): CLR exception - code e0434352 (first chance)
(18d8.1a8c): CLR exception - code e0434352 (first chance)
(18d8.1a8c): CLR exception - code e0434352 (first chance)
(18d8.1a8c): CLR exception - code e0434352 (first chance)
(18d8.1a8c): CLR exception - code e0434352 (first chance)
(18d8.1a8c): CLR exception - code e0434352 (first chance)