Linux下gdb调试生成core文件并调试core文件

本文介绍了core文件的概念及其在程序出现段错误时的作用。详细讲述了如何通过配置生成core文件,包括开启core文件生成、设置文件大小及路径,并提供了两种使用gdb调试core文件的方法。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

1.什么是core文件?

有问题的程序运行后,产生“段错误 (核心已转储)”时生成的具有堆栈信息和调试信息的文件。

编译时需要加 -g 选项使程序生成调试信息: gcc -g core_test.c -o core_test

2.怎样配置生成 core 文件

(1)core文件开关

    ①使用 ulimit -c 查看core开关,如果为0表示关闭,不会生成core文件;

    ②使用 ulimit -c [filesize] 设置core文件大小,当最小设置为4之后才会生成core文件;

    ③使用 ulimit -c unlimited 设置core文件大小为不限制,这是常用的做法;

    ④如果需要开机就执行,则需要将这句命令写到 /etc/profile 等文件。

    

(2)core文件命名和保存路径

    ①core文件有默认的名称和路径,但为了方便,我们通常会自己命名和指定保存路径;

    ②可以通过 /proc/sys/kernel/core_pattern 设置 core 文件名和保存路径,方法如下:

echo "/corefile/core-%e-%p-%t" > /proc/sys/kernel/core_pattern

命名的参数列表: 

    %p - insert pid into filename 添加pid 
    %u - insert current uid into filename 添加当前uid 
    %g - insert current gid into filename 添加当前gid 
    %s - insert signal that caused the coredump into the filename 添加导致产生core的信号 
    %t - insert UNIX time that the coredump occurred into filename 添加core文件生成时的unix时间 
    %h - insert hostname where the coredump happened into filename 添加主机名 

    %e - insert coredumping executable name into filename 添加命令名

3.调试core文件

    (1)方法1: gdb [exec file] [core file] 然后执行bt看堆栈信息:

  

    (2)方法②:gdb -c [core file],然后 file [exec file],最后再使用 bt 查看错误位置:

     

评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

wkd_007

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值