posix_memalign 捕获信号吗?

发布于 2024-11-01 04:21:08 字数 139 浏览 1 评论 0原文

posix_memalign 捕获信号吗?我使用 posix_memalign 分配内存并在后台运行计时器,我从日志中的 posix_memalign 收到“系统调用中断异常”。

是因为定时器信号吗?或者还有其他问题吗?

提前致谢。

Does posix_memalign catch signals? I am allocating memory using posix_memalign and running timer in the background, i get a "Interrupted system call exception", from posix_memalign in the logs.

Is it due to the timer signal? Or is there some other issue?

Thanks in advance.

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

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

发布评论

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

评论(2

陈甜 2024-11-08 04:21:08

我最好的猜测是您错误地处理了 posix_memalign 的返回值。该函数不返回指针。成功时返回 0,失败时返回错误代码。也许您在 posix_memalign 返回后在 errno 中找到了 EINTR;这是没有意义的,因为 posix_memalign 不使用 errno 。

My best guess is that you're treating the return value of posix_memalign incorrectly. This function does not return a pointer. It returns 0 on success and an error code on failure. Perhaps you're finding EINTR in errno after posix_memalign returns; this is meaningless since posix_memalign does not use errno.

雨后咖啡店 2024-11-08 04:21:08

我的问题的解决方案是: posix_memalign 捕获信号吗?

The solution to my question is: Does posix_memalign catch signals?

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