gpt4 book ai didi

c++ - 如何暂停所有线程的恢复?

转载 作者:太空宇宙 更新时间:2023-11-04 12:39:50 26 4
gpt4 key购买 nike

我的用例:A 进程 -> 请求暂停/恢复(通过 IPC) -> B 进程

我的目的是当B进程在后台时节省B进程的CPU使用率。因为B进程的所有线程都在消耗CPU使用率。所以我想在需要时暂停/重启 B 进程的所有线程。

Q1) 如何暂停/恢复 B 进程中的所有线程?

以下只是我的第一个想法,但我不确定这是解决这种情况的好方法。

如果您对此有好的解决方案,请告诉我您的建议。

<main thread of B process>
while(1)
{
mCondition.wait(lock);
//all thread are create & run in here
}

<handler thread of B process>
if(request resume)
mCondition.notify_one();
else
//terminate all thread of B process

=> 这个想法是一种终止所有线程并重新创建所有线程的方法。

最佳答案

在 POSIX 平台上,您可以简单地kill(targetPid, SIG{STOP,CONT}) 目标进程,它会暂停/恢复它的所有线程。

关于c++ - 如何暂停所有线程的恢复?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54750678/

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