allow coexistance of N build and AC build.
[tomato.git] / release / src-rt-6.x / linux / linux-2.6 / include / asm-i386 / current.h
blobd3524853991203c36b2bbcc75671facabe59263e
1 #ifndef _I386_CURRENT_H
2 #define _I386_CURRENT_H
4 #include <linux/compiler.h>
5 #include <asm/percpu.h>
7 struct task_struct;
9 DECLARE_PER_CPU(struct task_struct *, current_task);
10 static __always_inline struct task_struct *get_current(void)
12 return x86_read_percpu(current_task);
15 #define current get_current()
17 #endif /* !(_I386_CURRENT_H) */