SIGUSR2在TCL解释器中的用途是什么?

发布于 2024-11-19 12:29:30 字数 141 浏览 2 评论 0原文

我从 tcl 解释器收到用户定义的信号 2 错误。 tcl 解释器使用这个特定信号做什么?换句话说,如果 tcl 解释器向我发送用户定义的信号 2 意味着什么?

这是一个经过的超时吗?是不是内存不足?我在哪里可以找到?

I'm getting a user defined signal 2 error from the tcl interpreter. What does the tcl interpreter use this particular signal for? In other words, what does it mean if the tcl interpreter send me a user defined signal 2?

It is an elapsed timeout? Is it lack of memory? Where can I find out?

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

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

发布评论

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

评论(1

冷血 2024-11-26 12:29:30

Tcl 不会以任何方式为自己使用该信号。它不生成它,不为其设置特殊的处理程序,也不提供任何脚本化的方式来响应它。
如果您使用的是 TclX 或 Expect,则可以使用 kill 生成它,并使用 signal 定义您自己的处理程序。但你必须为自己做这些,没有什么可以为你做的。

IIRC,一些内存管理器使用信号作为其操作的一部分。我声称在这件事上没有专业知识。

Tcl does not use this signal for itself in any way. It does not generate it, it does not set a special handler for it, and it does not provide any scripted way to respond to it.
If you are using TclX or Expect, you can generate it with kill and define your own handler with signal. But you have to do those for yourself, nothing does it for you.

IIRC, some memory managers use signals as part of how they operate. I claim no expertise in the matter.

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