- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我们有一个 Windows32 应用程序,其中一个线程可以停止另一个线程来检查它的通过执行 SuspendThread/GetThreadContext/ResumeThread 状态 [PC 等]。
if (SuspendThread((HANDLE)hComputeThread[threadId])<0) // freeze thread
ThreadOperationFault("SuspendThread","InterruptGranule");
CONTEXT Context, *pContext;
Context.ContextFlags = (CONTEXT_INTEGER | CONTEXT_CONTROL);
if (!GetThreadContext((HANDLE)hComputeThread[threadId],&Context))
ThreadOperationFault("GetThreadContext","InterruptGranule");
在极少数情况下,在多核系统上,GetThreadContext 返回错误代码 5(Windows 系统错误代码“拒绝访问”)。
SuspendThread 文档似乎清楚地表明目标线程已挂起,如果没有返回错误。我们正在检查SuspendThread和ResumeThread的返回状态;他们从不提示。
为什么我可以挂起一个线程,但不能访问它的上下文呢?
这个博客 http://www.dcl.hpi.uni-potsdam.de/research/WRK/2009/01/what-does-suspendthread-really-do/
表明 SuspendThread 在返回时可能已经开始暂停另一个线程,但该线程尚未暂停。在这种情况下,我可以看出 GetThreadContext 会有什么问题,但这似乎是一种定义 SuspendThread 的愚蠢方法。 (SuspendThread 的调用如何知道目标线程何时真正挂起?)
编辑:我撒谎了。我说这是针对 Windows 的。
好吧,奇怪的是我在 Windows XP 64 下没有看到这种行为(至少在上周没有,我真的不知道在那之前发生了什么)......但我们一直在测试这个Ubuntu 10.x 上 Wine 下的 Windows 应用程序。 Wine source for the guts of GetThreadContext包含当由于某种原因尝试获取线程状态失败时,第 819 行的访问被拒绝返回响应。我在猜测,但 Wine GetThreadStatus 似乎认为线程可能无法重复访问。为什么在 SuspendThead 之后那会是真的我无法理解,但是有代码。想法?
EDIT2:我又撒谎了。我说我们只看到了 Wine 上的行为。不……我们现在发现了一个 Vista Ultimate 系统似乎会产生同样的错误(同样,很少)。因此,Wine 和 Windows 似乎就一个模糊的案例达成了一致。似乎仅启用 Sysinternals Process 监控程序会使情况恶化并导致问题出现在 Windows XP 64 上;我怀疑是 Heisenbug。 (进程监视器甚至在我用于开发的 Wine-tasting (:-) 机器或 XP 64 系统上都不存在)。
这到底是什么?
EDIT3:2010 年 9 月 15 日。我在不干扰 SuspendThread、ResumeThread 和 GetContext 的代码的情况下,对错误返回状态进行了仔细检查。自从我那样做以来,我还没有在 Windows 系统上看到这种行为的任何提示。还没有回到 Wine 实验。
2010 年 11 月:奇怪。似乎如果我在 VisualStudio 2005 下编译它,它在 Windows Vista 和 7 上会失败,但在更早的操作系统上不会。如果我在 VisualStudio 2010 下编译,它不会在任何地方失败。有人可能会指责 VisualStudio2005,但我怀疑存在位置敏感问题,VS 2005 和 VS 2010 中的不同优化器将代码放置在略有不同的位置。
2012 年 11 月:Saga 继续。我们在许多 XP 和 Windows 7 机器上看到这种故障,故障率非常低(每几千次运行一次)。我们的 Suspend 事件应用于主要执行纯计算代码但有时会调用 Windows 的线程。当线程的 PC 在我们的计算代码中时,我不记得看到过这个问题。当然,我看不到线程挂起时的PC,因为GetContext不会给我,所以我不能直接确认问题只发生在执行系统调用的时候。但是,我们所有的系统调用都是通过一个点进行的,到目前为止,证据表明当我们挂起时那个点就被执行了。因此,间接证据表明,只有在该线程正在执行系统调用时,线程上的 GetContext 才会失败。我还没有精力建立一个关键实验来检验这个假设。
最佳答案
让我引用 Richter/Nassare 的“Windows via C++ 5Ed”,这可能会说明一些问题:
DWORD SuspendThread(HANDLE hThread);
Any thread can call this function to suspend another thread (as long as you have the thread's handle). It goes without saying (but I'll say it anyway) that a thread can suspend itself but cannot resume itself. Like ResumeThread, SuspendThread returns the thread's previous suspend count. A thread can be suspended as many as MAXIMUM_SUSPEND_COUNT times (defined as 127 in WinNT.h). Note that SuspendThread is asynchronous with respect to kernel-mode execution, but user-mode execution does not occur until the thread is resumed.
In real life, an application must be careful when it calls SuspendThread because you have no idea what the thread might be doing when you attempt to suspend it. If the thread is attempting to allocate memory from a heap, for example, the thread will have a lock on the heap. As other threads attempt to access the heap, their execution will be halted until the first thread is resumed. SuspendThread is safe only if you know exactly what the target thread is (or might be doing) and you take extreme measures to avoid problems or deadlocks caused by suspending the thread.
...
Windows actually lets you look inside a thread's kernel object and grab its current set of CPU registers. To do this, you simply call GetThreadContext:
BOOL GetThreadContext( HANDLE hThread, PCONTEXT pContext);
To call this function, just allocate a CONTEXT structure, initialize some flags (the structure's ContextFlags member) indicating which registers you want to get back, and pass the address of the structure to GetThreadContext. The function then fills in the members you've requested.
You should call SuspendThread before calling GetThreadContext; otherwise, the thread might be scheduled and the thread's context might be different from what you get back. A thread actually has two contexts: user mode and kernel mode. GetThreadContext can return only the user-mode context of a thread. If you call SuspendThread to stop a thread but that thread is currently executing in kernel mode, its user-mode context is stable even though SuspendThread hasn't actually suspended the thread yet. But the thread cannot execute any more user-mode code until it is resumed, so you can safely consider the thread suspended and GetThreadContext will work.
我的猜测是,如果您只是调用 SuspendThread,GetThreadContext 可能会失败,而线程处于内核模式,此时内核正在锁定线程上下文 block 。
也许在多核系统上,一个内核正在处理线程的内核模式执行,它的用户模式刚刚被挂起,保持锁定线程的 CONTEXT 结构,恰好在另一个内核调用 GetThreadContext 时。
由于没有记录此行为,我建议联系 Microsoft。
关于Windows SuspendThread 没有? (GetThreadContext 失败),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3444190/
我在使用以下代码时遇到问题: function http_file_exists($url){ $f=fopen($url,"r"); if($f){ fclose($f); retu
我已经通过 Git 部署到 Azure 几个月了,没有出现重大问题,但现在我似乎遇到了一个无法克服的错误。 我创建了一个新的 Azure 网站,为正在开发的项目创建单独的预览链接。我在新站点上设置了
我已经通过flutter创建了一个App并完成了它,我想在flutter文档中阅读时进行部署。 我收到此错误: FAILURE: Build failed with an exception. * W
我在Windows 10中使用一些简单的Powershell代码遇到了这个奇怪的问题,我认为这可能是我做错了,但我不是Powershell的天才。 我有这个: $ix = [System.Net.Dn
我正在尝试使用 RapidJSON 解析从服务器接收到的数据。以下是收到的确切字符串: [ { "Node": "9478149a08f9", "Address": "172.17
我尝试为 ios 编译 OpenCV。我总是收到这些错误。我用不同版本的opencv试了一下,结果都是一样的。 我运行这个:python 平台/ios/build_framework.py ios_o
我在一台机器上做基本的发布/订阅,我的客户端是 StackExchange-Redis 的 C# 客户端,我在同一台机器上运行基于 Windows 的 Redis 服务器(服务器版本 2.8.4) 当
我有这段代码,但无法执行,请帮我解决这个问题 连接 connect_error) { die ("connection failed: " . $terhubung->connect_erro
我在 tomcat 上运行并由 maven 编译的 Web 应用程序给出了以下警告和错误。我可以在本地存储库中看到所有 JAR,但有人可以帮忙吗。 WARNING: Failed to scan JA
我正在 Windows 8 上使用 Android Studio 开发一个 android 应用程序,我正在使用一些 native 代码。突然间我无法编译我的 C 文件。当我运行 ndk-build
下面的代码对类和结构的成员进行序列化和反序列化。序列化工作正常,但我在尝试使用 oarch >> BOOST_SERIALIZATION_NVP(outObj); 反序列化时遇到了以下错误; 代码中是
如果我运行此命令“rspec ./spec/requests/api/v1/password_reset_request_spec.rb”,此文件中的所有测试都会通过。 但是,当我运行“rspec”时
我在尝试执行测试以使用 Protractor 上传文件时出错,我的代码是这个 it('it should be possible to upload a file', function() {
System.loadLibrary("nativefaceswap"); 当我运行我的应用程序时,我在 Android Studio 中发现了此类错误。在logcat中显示: java.lang.U
我希望有人能帮助我!使用任何方法或命令行的任何 SSL/HTTPS 调用均无效。 我在 Windows 10 中使用 Ubuntu Server 18.04 作为子系统。我的问题是昨天才开始出现的,因
通过删除这两个值将日期字段从 null=True 和 Blank=True 更改为 required 时,使用 db.alter 命令时遇到问题。 当以下行被注释掉时,迁移运行不会出现问题。
我第一次使用 Heroku 尝试创建应用程序(使用 SendGrid 的 Inbound Parse Webhook"和 Twilio SMS 通过电子邮件发送和接收 SMS 消息)。通过 Virtu
我正在将我的 swift 项目更新到 Xcode 7 上的 Swift 2.0。xcode 在构建项目时报告了以下错误: 命令/Applications/Xcode.app/Contents/Deve
在我的代码中,SSL 库函数 SSL_library_init() 没有按预期返回 1。我如何才能看到它返回了什么错误? 我在 SSL_library_init() 之后调用了 SSL_load_er
我正在尝试运行在以下链接中找到的答案: Asynchronously Load the Contents of a Div 但是当我这样做时,我会遇到我不太理解的错误。 我的代码: $(documen
我是一名优秀的程序员,十分优秀!