November 7 2006

本文讲述了在一个庞大的项目中进行调试的工作经历。项目规模庞大,仅C源文件就达到了133MB。为了查找bug,需要在代码中加入调试信息并记录到日志文件中,再通过grep等工具进行定位。

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

This morning the two Japaneses looks unhappy because we was off-duty yesterday evening.
So, this noon one of them dispatched tasks to us.  My task today is to add debug infomation
into the source of synchronized question.  As the guy said, we begin reading, understanding
and revising the source code of the large scale project.  The project is so large that all
the C source files are total about 133 MB.

  The guy hold a example how to add debug information into a source.  In actual fact, it is
impossible to debug a module in this project with a tools.  So, we must print so many error
inforamtion into a log file.  Yes, some bugs can be caputered but some dormant bugs seldom can
found, such as death lock, memory allocation, etc.  At the same time, it is a painful task to
seek my debug infomation in the so big log file.  I must use grep, tail, head tools and so on.

  The following code segment is that example.

  struct DEV_ID{
    int dev_id;
    char dev_name[128];
  };

  DEV_ID dev_info;

  ...
  if (getStruct(&dev_info)==TRUE){
    SGCMNsyslogErr("dev_id: %u/n", dev_info.dev_id);
    SGCMNsyslogErr("dev_name: %s/n", dev_info.name);
  }

  There is a interesting thing, we type code in the Window sytem and compile codes in Linux.
Eclipse is our main editor.  However, gcc can not be used.
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值