有没有办法暂停 Python 子进程,特别是在 Ubuntu 中?
我有一个基于 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要暂停进程,请使用
要恢复执行,请使用
To pause the process, use
To resume execution, use