1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#ifndef _I386_CURRENT_H #define _I386_CURRENT_H #include <asm/pda.h> #include <linux/compiler.h> struct task_struct; static __always_inline struct task_struct *get_current(void) { return read_pda(pcurrent); } #define current get_current() #endif /* !(_I386_CURRENT_H) */