为什么我在这个方法中看到对WaitForMultipleObjectsEx的调用?
本文关键字:WaitForMultipleObjectsEx 调用 方法 为什么 | 更新日期: 2023-09-27 18:15:39
我有一个。net windows窗体应用程序,它偶尔会进入挂起状态。当我对进程进行转储并通过WinDbg/SOS打开它时,它显示一个线程对kernel32!WaitForMultipleObjectsEx
进行了调用,尽管我没有在该特定方法中的任何事件对象上调用任何WaitXXX API。我正在检查invokedrerequired和IsDisposed api。对invokerequired或IsDisposed API的任何调用内部调用任何WaitXXX API吗?
这是线程的调用栈。
[HelperMethodFrame_1OBJ: 0e4eedc0] System.Threading.WaitHandle.WaitOneNative(Microsoft.Win32.SafeHandles.SafeWaitHandle, UInt32, Boolean, Boolean)
0e4eee6c 67b7689f System.Threading.WaitHandle.WaitOne(Int64, Boolean)
0e4eee88 67b76855 System.Threading.WaitHandle.WaitOne(Int32, Boolean)
0e4eee9c 65c21a4f System.Windows.Forms.Control.WaitForWaitHandle(System.Threading.WaitHandle)
0e4eeeb0 65f5d68b System.Windows.Forms.Control.MarshaledInvoke(System.Windows.Forms.Control, System.Delegate, System.Object[], Boolean)
0e4eef50 65c233ac System.Windows.Forms.Control.Invoke(System.Delegate, System.Object[])
0e4eef84 65c2334f System.Windows.Forms.Control.Invoke(System.Delegate)
0e4eef88 6715ad76 MyNameSpace.MyClass.MyMethod()
0e4eefb0 67b96e96 System.Threading.ThreadHelper.ThreadStart_Context(System.Object)
0e4eefbc 67ba031f System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object)
0e4eefd4 67b96e14 System.Threading.ThreadHelper.ThreadStart()
0e4ef1fc 68f81b4c [GCFrame: 0e4ef1fc]
Win32(以及。net)中的许多操作将被阻塞。因为在所有阻塞api的下面都是一个带有等待的异步调用,当用户线程等待内核线程的某些东西时,这种等待调用是堆栈上的一个常见特性。
Update(现在我看到你的调用堆栈):等待是因为调用Invoke
的线程需要等待UI线程在返回之前完成操作。WaitForMultipleObjectsEx
是底层等待API,用于任何用户模式等待内核句柄(在这种情况下可能是Event对象)。
有很多。net方法在内部执行等待。
例如,Control.Invoke
将等待事件句柄,直到UI线程运行回调。