Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有人知道我在使用Duktape时如何处理 SIGINT(中断信号)吗?当用户使用 CTRL+C 中断时,我想抛出一个可以在 javascript 中捕获的异常。
我有一个捕捉信号的功能,但我目前的方法只是调用
duk_throw(duk_context);
因为我的信号处理程序不是很可靠。我猜当时引擎状态不好,所以不能继续。
有人有想法么?
我想过在某处设置一个标志,但不知道如何干净地做到这一点。
谢谢
马特