什么是SEGV_MAPERR?
什么是SEGV_MAPERR
,为什么它总是出现SIGSEGV
?
What is SEGV_MAPERR
, why does it always come up with SIGSEGV
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
什么是SEGV_MAPERR
,为什么它总是出现SIGSEGV
?
What is SEGV_MAPERR
, why does it always come up with SIGSEGV
?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
有两种常见的 SEGV ,这是由无效内存访问导致的错误:
SEGV_ACCERR
。SEGV_MAPERR
。SEGV_MAPERR
的某种文档(索引 Linux 源代码)位于:https://elixir.bootlin.com/linux/latest/A/ident/SEGV_MAPERR。There are two common kinds of SEGV, which is an error that results from an invalid memory access:
SEGV_ACCERR
.SEGV_MAPERR
.Documentation of a sort (indexed Linux source code) for
SEGV_MAPERR
is here: https://elixir.bootlin.com/linux/latest/A/ident/SEGV_MAPERR.这是一个分段错误。 最有可能是悬空指针问题,或某种缓冲区溢出。
SIGSSEGV
是根据分段错误问题终止它的信号。检查悬空指针以及溢出问题。
启用核心转储将帮助您确定问题。
It's a segmentation fault. Most probably a dangling pointer issue, or some sort of buffer overflow.
SIGSSEGV
is the signal that terminates it based on the issue, segmentation fault.Check for dangling pointers as well as the overflow issue.
Enabling core dumps will help you determine the problem.