分类: 嵌入式
2012-01-16 00:50:16
printk(KERN_ERR "\n\nfile: %s \t line = %d\t function: %s\n", __FILE__, __LINE__, __func__); printk("KERNEL:File: %s\t line = %d\t function: %s\n", __FILE__, __LINE__, __func__); 调试kernel增加一些打印信息,可能通过这个信息从而看到函数被哪些函数调用了. unsigned int * s_bp; __asm__("movl %%ebp,%0":"=g"(s_bp)); printk( "\nKERNEL-DEBUG: file : [%s] \nFunction:[%s] \nLine = [%d] \nIs called Add = [%x]\n", __FILE__, __func__, __LINE__,* (unsigned int *) (s_bp+1)); 查函数表: $ cat /proc/kallsyms __LINE__ 当前(源代码文件)行号 [整数] __FILE__ 当前正在编译的文件的文件名 [字符串] __DATE__ 当前日期,以“月月 日日 年年年年”的形式给出 [字符串] __TIME__ 当前时间,以“HH:mm:ss”的格式给出 [字符串] __STDC__ 如果编译器符合ANSI C标准,该宏为1,否则为0 __STDC_HOSTED__ 如果实现了所有C标准库,该宏为1,否则为0 __STDC_VERSION__ 被定义为199901L(不同编译器可能不一样,比如我用的gcc里就没有这个预定义符号) 注:这些预定义符号的首尾为两个下划线,如果是两个 单词,中间以一个下划线连接。 如果在源代码中使用了这些符号,它们会在预处理时被转换(使用gcc编译器的 -E 选项可以看到替换后的值) C 标准里还在每个函数内预定义了一个标志符: __func__ 它被定义为 static const char __func__[]="function-name"; 即不能在程序内对__func__赋值,也不能改变它所指向的字符串(函数名),否则报 编译错误 注:__func__是个标志符,它在预处理阶段不被替换,所以使用gcc -E 是看不到任何效果的。 例:test.c int main(){ printf("%s %s\n",__FILE__,__func__); return 0; } 输 出: test.c main 在头文件 KERN_EMERG Used for emergency messages, usually those that precede a crash. 用于突发性事件的消息,通常在系统崩溃之前报告此类消息。 KERN_ALERT A situation requiring immediate action. 在需要立即操作的情况下使用此消息。 KERN_CRIT Critical conditions, often related to serious hardware or software failures. 用于临界条件下,通常遇到严重的硬软件错误时使用此消息。 KERN_ERR Used to report error conditions; device drivers often use KERN_ERR to report hardware difficulties. 用于报告错误条件;设备驱动经常使用KERN_ERR报告硬件难题。 KERN_WARNING Warnings about problematic situations that do not, in themselves, create serious problems with the system. 是关于问题状况的警告,一般这些状况不会引起系统的严重问题。 KERN_NOTICE Situations that are normal, but still worthy of note. A number of security-related conditions are reported at this level. 该级别较为普通,但仍然值得注意。许多与安全性相关的情况会在这个级别被报告。 KERN_INFO Informational messages. Many drivers print information about the hardware they find at startup time at this level. 信息消息。许多驱动程序在启动时刻用它来输出获得的硬件信息。 KERN_DEBUG Used for debugging messages. 用于输出调试信息 printk(KERN_ERR, "file: %s \t line = %d\t function: %s\n", __FILE__, __LINE__, __func__); |