如何在 Clozure cl 中杀死一组进程?

发布于 2024-12-22 09:26:12 字数 240 浏览 0 评论 0原文

我想在 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 技术交流群。

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

发布评论

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

评论(1

怕倦 2024-12-29 09:26:12

据我所知,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 call ccl:signal-external-process on the running process to kill it if you need. Documentation here.

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