【原型】
int printk(const char * fmt,…);
【示例】
與大多數展示printf的功能一樣,我們也用乙個helloworld的程式來演示printk的輸出:
編寫乙個
核心模組:
#include
#include
#if config_modversions==1
#define modversions
#include
#endif
module_license("gpl");
int init_module()
void cleanup_module()
儲存為檔案hello.c
編寫乙個makefile:
cc=gcc
modcflags:=-o6 -wall -dmodule -d__kernel__ -dlinux
hello.o:hello.c /usr/include/linux/version.h
$(cc) $(modcflags) -c hello.c
echo insmod hello.o to turn it on
儲存為檔案makefile
執行make
我們可以看到生成了乙個hello.o的
核心模組,我們想通過這個模組在插入
核心的時候輸出
"hello.word-this is the kernel speaking"
這樣一條資訊。
然後我們開始:
[root@localhost root]# insmod hello.o
[root@localhost root]#
並沒有輸出任何訊息。why?
這也是printf和printk的乙個不同的地方
用printk,核心會根據
日誌級別,可能把訊息列印到當前控制台上,這個控制台通常是乙個字元模式的終端、乙個串列埠印表機或是乙個
並口印表機。這些訊息正常輸出的前提是──
日誌輸出級別小於console_loglevel(在
核心中數字越小優先順序越高)。
沒有指定日誌級別的printk語句預設採用的級別是 default_ message_loglevel(這個預設級別一般為<4>,即與kern_warning在乙個級別上),其定義在linux26/kernel/printk.c中可以找到
日誌級別一共有8個級別,printk的日誌級別定義如下(在include/linux/kernel.h中):
#define kern_emerg 0/*緊急事件訊息,
系統崩潰之前提示,表示系統不可用*/
#define kern_alert 1/*報告訊息,表示必須立即採取措施*/
#define kern_crit 2/*臨界條件,通常涉及嚴重的硬體或
軟體操作失敗*/
#define kern_err 3/*錯誤條件,驅動程式常用kern_err來報告硬體的錯誤*/
#define kern_warning 4/*警告條件,對可能出現問題的情況進行警告*/
#define kern_notice 5/*正常但又重要的條件,用於提醒*/
#define kern_info 6/*提示資訊,如
驅動程式啟動時,列印硬體資訊*/
#define kern_debug 7/*除錯級別的訊息*/
現在我們來修改hello.c程式,使printk的輸出級別為最高:
printk("<0>""hello.word-this is the kernel speaking\n");
然後重新編譯hello.o,並插入
核心:[root@localhost root]# insmod hello.o
[root@localhost root]#
message from syslogd@localhost at sat aug 15 05:32:22 2009 ...
localhost kernel: hello.word-this is the kernel speaking
hello,world資訊出現了。
其實printk始終是能輸出資訊的,只不過不一定是到了終端上。我們可以去
/var/log/messages這個檔案裡面去檢視。
如果klogd沒有執行,訊息不會傳遞到
使用者空間,只能檢視/proc/kmsg
通過讀寫/proc/sys/kernel/printk檔案可讀取和修改控制台的
日誌級別。檢視這個檔案的方法如下:
#cat /proc/sys/kernel/printk 6 4 1 7
上面顯示的4個資料分別對應控制台
日誌級別、預設的訊息日誌級別、最低的控制台日誌級別和預設的控制台日誌級別。
可用下面的命令設定當前日誌級別:
# echo 8 > /proc/sys/kernel/printk
這樣所有級別<8,(0-7)的訊息都可以顯示在控制台上.
Zend Cache 用法的乙個例子
選項參考手冊 建立cache物件 frontendoptions config cache cache frontend toarray backendoptions config cache cache backend toarray frontendname frontendoptions na...
LineDDA的乙個例子
unit unit1 inte ce uses windows,messages,sysutils,variants,classes,graphics,controls,forms,dialogs,extctrls,stdctrls,buttons type tfmmain class tform ...
SQL GROUP CONCAT的乙個例子
我有乙個這樣的資料庫 user info 現在有乙個需求是把這樣 9 條記錄按照 username 來 group 成3條記錄 目標 shu female 201 lee male 202 yuki female 181 如果用select from user info group by usern...