如何在 C 语言中传递/捕获/响应 Python 的键盘中断?

发布于 2024-09-28 13:24:35 字数 234 浏览 4 评论 0原文

我有一个用 C++ 编写的简单库,我正在创建一个使用 boost.python 的 Python 包装器。有些函数需要很长时间才能执行(超过 30 秒),我想让它可中断,这样当我在 python 解释器中按 ctrl-d 触发 KeyboardInterrupt 时,我就能够以某种方式在 C++ 中响应。

有办法做到这一点吗?我在 boost.org 或 python.org 上找不到任何有关中断和 boost.python 的信息。

I have a simple library written in C++ which I'm creating a Python wrapper for using boost.python. Some functions take a long time to execute (over 30 seconds), and I would like to make it interruptible so that when I hit ctrl-d to trigger KeyboardInterrupt in the python interpreter, I'm somehow able to respond to that in C++.

Is there a way to do this? I couldn't find any information about interrupts and boost.python at boost.org or python.org.

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

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

发布评论

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

评论(1

潇烟暮雨 2024-10-05 13:24:35

经常调用 PyErr_CheckSignals()

Call PyErr_CheckSignals() every so often.

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