gpt4 book ai didi

python - 暂停进程?

转载 作者:太空狗 更新时间:2023-10-29 17:57:36 26 4
gpt4 key购买 nike

有没有办法暂停进程(从可执行文件运行),以便它在暂停时停止 cpu 负载,并等到它取消暂停才能继续工作?可能在 python 中,或者以某种方式由 python 访问。

最佳答案

通过使用 psutil(https://github.com/giampaolo/psutil):

>>> import psutil
>>> somepid = 1023
>>> p = psutil.Process(somepid)
>>> p.suspend()
>>> p.resume()

关于python - 暂停进程?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2804287/

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