?? debug.h
字號:
#ifndef __KRTSPROXYD_DEBUG_H__
#define __KRTSPROXYD_DEBUG_H__
/*output the debug information*/
//#define KRTSPROXYD_DEBUG
#ifdef KRTSPROXYD_DEBUG
#define KRTSPROXYD_OUT(msg...) \
do{ \
printk(msg); \
}while(0)
#define EnterFunction(x) printk(KERN_INFO "Enter: %s, %s line %i\n",x,__FILE__,__LINE__)
#define LeaveFunction(x) printk(KERN_INFO "Leave: %s, %s line %i\n",x,__FILE__,__LINE__)
#else
#define KRTSPROXYD_OUT(msg...) do{ }while(0)
#define EnterFunction(x) do {} while (0)
#define LeaveFunction(x) do {} while (0)
#endif
#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -