有没有办法暂停 Python 子进程,特别是在 Ubuntu 中?

发布于 2024-11-07 11:31:37 字数 184 浏览 0 评论 0原文

我有一个基于 GUI 的程序,我需要用户能够暂停或恢复子进程。例如,如果我有:

programID = subprocess.Popen("program_name"), shell=True)

有没有办法可以暂停或恢复此操作?我读过一些有关使用 SIGTERM 的内容,但我不太明白。

I have a GUI based program where I need the user to be able to pause or resume a subprocess. For example, if I have:

programID = subprocess.Popen("program_name"), shell=True)

Is there a way that I can pause or resume this? I read something about using SIGTERM but I didn't quite grasp it.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

自由如风 2024-11-14 11:31:37

要暂停进程,请使用

os.kill(programID.pid, signal.SIGSTOP)

要恢复执行,请使用

os.kill(programID.pid, signal.SIGCONT)

To pause the process, use

os.kill(programID.pid, signal.SIGSTOP)

To resume execution, use

os.kill(programID.pid, signal.SIGCONT)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文