如何在 Clozure cl 中杀死一组进程?
我想在 ccl 中运行 shell 命令,但该命令可能由于某种原因被挂起。所以我想杀掉这个命令生成的所有子进程。我该怎么做?
我尝试过 trivial-shell 来运行 shell 命令,当命令没有挂起时,它运行良好。
我还使用 trivial-shell 中的 with-timeout 宏来检查超时,它只是给我一个超时错误条件,shell 进程仍然挂在那里。在这里我只想把他们全部杀掉,回报一些东西。
谢谢大家。
I want to run a shell command within ccl, but this command may be hung for some reason. So I want to kill all the sub process generated by this command. How can I do this?
I have tried trivial-shell to run the shell command, when the command not hung, it works well.
I also use with-timeout macro which is in trivial-shell to check the timeout, it just give me a timeout-error condition, the shell process is still hunging there. Here I just want to kill them all and return something.
Thank you all.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我所知,trivial-shell 只提供同步 shell 调用,因此没有简单的方法来终止正在进行的子进程。
我建议使用
:wait nil
调用 Clozure Common Lisp 的特定于实现的ccl:run-program
函数来异步运行作业。然后,如果需要,您可以在正在运行的进程上调用 ccl:signal-external-process 来终止它。 此处的文档。As far as I can tell,
trivial-shell
only provides a synchronous shell call so there's no simple way to terminate ongoing subprocesses.I suggest calling Clozure Common Lisp's implementation-specific
ccl:run-program
function with:wait nil
to run the jobs asynchronously. You can then callccl:signal-external-process
on the running process to kill it if you need. Documentation here.