?? current.h
字號(hào):
#ifndef _I386_CURRENT_H#define _I386_CURRENT_Hstruct task_struct;static inline struct task_struct * get_current(void){ struct task_struct *current; __asm__("andl %%esp,%0; ":"=r" (current) : "0" (~8191UL)); return current; } #define current get_current()#endif /* !(_I386_CURRENT_H) */
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -