uclinux-2008R1-RC8(bf561)到VDSP5的移植(15):WARN()

时间:2022-03-17 14:03:39
 
  
Uclinux的内核中有许多函数并不是一开始就调用的,而只是做为一个函数指针来使用,为了避免一开始就产生过多的链接错误,在config.h中定义了一个宏:
 
#ifndef __ASSEMBLY__
     #include <ccblkfn.h>
     #include <stdio.h>
#endif
 
#define WARN()     do {fprintf(stderr, "code omited: %d @ %s/n", __LINE__, __FILE__); while(1) idle();} while(0)
当发生链接错误时,首先找出函数体,并在其后加上WARN();如下所示:
 
static void
default_handler(int var_segment, struct pt_regs *regp)
{
//   set_personality(0);
//
//   if (current_thread_info()->exec_domain->handler != default_handler)
//       current_thread_info()->exec_domain->handler(var_segment, regp);
//   else
//       send_sig(SIGSEGV, current, 1);
     WARN();
}
这样,当运行到此函数时,将输出一个提示信息并停下,我们再去掉此函数体的注释,嘿嘿…………..