?? current.h
字號:
#ifndef _PARISC_CURRENT_H#define _PARISC_CURRENT_H#include <asm/processor.h>struct task_struct;static inline struct task_struct * get_current(void){ struct task_struct *current; asm("copy 30,%0" : "=r" (current)); return (struct task_struct *)((long) current & ~(THREAD_SIZE-1));} #define current get_current()#endif /* !(_PARISC_CURRENT_H) */
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -