gpt4 book ai didi

c++ - 我可以暂停除一个线程之外的进程吗?

转载 作者:搜寻专家 更新时间:2023-10-31 01:09:46 25 4
gpt4 key购买 nike

我要挂起(或暂停)除一个线程之外的进程。

我尝试使用 SuspendThread(Api Function),结果进程线程变成了不可响应状态。

这不是我想要的。我想让简历成为我必须做的主要工作的一个话题。

我该如何解决这个问题?请给出你的想法。

谢谢。

最佳答案

您可以调用CreateToolhelp32Snapshot获取属于进程的线程列表。获得该列表后,只需遍历它并挂起与当前线程 ID 不匹配的每个线程。下面的示例未经测试,但应该可以正常工作。

#include <windows.h>
#include <tlhelp32.h>

// Pass 0 as the targetProcessId to suspend threads in the current process
void DoSuspendThread(DWORD targetProcessId, DWORD targetThreadId)
{
HANDLE h = CreateToolhelp32Snapshot(TH32CS_SNAPTHREAD, 0);
if (h != INVALID_HANDLE_VALUE)
{
THREADENTRY32 te;
te.dwSize = sizeof(te);
if (Thread32First(h, &te))
{
do
{
if (te.dwSize >= FIELD_OFFSET(THREADENTRY32, th32OwnerProcessID) + sizeof(te.th32OwnerProcessID))
{
// Suspend all threads EXCEPT the one we want to keep running
if(te.th32ThreadID != targetThreadId && te.th32OwnerProcessID == targetProcessId)
{
HANDLE thread = ::OpenThread(THREAD_ALL_ACCESS, FALSE, te.th32ThreadID);
if(thread != NULL)
{
SuspendThread(thread);
CloseHandle(thread);
}
}
}
te.dwSize = sizeof(te);
} while (Thread32Next(h, &te));
}
CloseHandle(h);
}
}

关于c++ - 我可以暂停除一个线程之外的进程吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16684245/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com