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.
操作系统:Linux。
我正在寻找工具或技巧来编写代码(如果且仅在必要时)将地址的内容写入文件以供进一步调查。
谢谢你的帮助。
核心转储是进程内存的完整快照。
如果您有gcore可用的,它将为您生成正在运行的进程的核心转储而不终止它。否则,您可以使用kill -ABRT终止进程并生成核心转储。
gcore
kill -ABRT
确保ulimit -c设置为unlimited(或使用 设置ulimit -c unlimited)。
ulimit -c
unlimited
ulimit -c unlimited
如果您真的只想转储一小部分,请查看 GDB 手册的这一部分。