如何在 C 语言中传递/捕获/响应 Python 的键盘中断?
我有一个用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
经常调用
PyErr_CheckSignals()
。Call
PyErr_CheckSignals()
every so often.