Ubuntu 即时调试
大家早上好,
我目前在一个小软件上随机遇到段错误,但是,它仅在未使用附加调试器启动时出现(由于可能的内存错误,其中值在启动时在安全间隔内初始化)调试器)。
是否可以仅在发生段错误时才附加调试器,例如,当 Windows 中发生未处理的异常时将 Visual Studio 附加到进程?
我正在使用 Ubuntu,32 位。
提前致谢
Good Morning everyone
I'm currently facing a segfault at random on a little piece of software, however, It appears only when not started with an attached debugger (due to a possible memory error, where values are initialized in a safe interval when started with a debugger).
Is it possible to attach an debugger only in case of an segfault, just-in-time, like, for example attaching Visual Studio to a process when unhanded exceptions happen in Windows?
I am working on Ubuntu, 32 bit.
thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Ubuntu 开箱即用地将核心文件大小限制为“无”。使用
ulimit -c unlimited
更改它将允许错误的程序像它应该的那样转储核心,然后GDB将很乐意允许对错误进行事后分析。Out of the box, Ubuntu limits the core file size to "none". Changing it with
ulimit -c unlimited
will allow your errant program to dump core like it should and then GDB will be happy to allow post-mortem analysis of the fault.