2008-10-23 05:26:29 +00:00
|
|
|
#ifndef _ASM_X86_CURRENT_H
|
|
|
|
#define _ASM_X86_CURRENT_H
|
2008-05-10 02:09:48 +00:00
|
|
|
|
|
|
|
#include <linux/compiler.h>
|
|
|
|
#include <asm/percpu.h>
|
|
|
|
|
2009-01-18 15:38:58 +00:00
|
|
|
#ifndef __ASSEMBLY__
|
2008-05-10 02:09:48 +00:00
|
|
|
struct task_struct;
|
|
|
|
|
|
|
|
DECLARE_PER_CPU(struct task_struct *, current_task);
|
|
|
|
|
|
|
|
static __always_inline struct task_struct *get_current(void)
|
|
|
|
{
|
2009-08-03 05:08:48 +00:00
|
|
|
return percpu_read_stable(current_task);
|
2008-05-10 02:09:48 +00:00
|
|
|
}
|
|
|
|
|
2009-01-18 15:38:58 +00:00
|
|
|
#define current get_current()
|
2008-05-10 02:09:48 +00:00
|
|
|
|
|
|
|
#endif /* __ASSEMBLY__ */
|
|
|
|
|
2008-10-23 05:26:29 +00:00
|
|
|
#endif /* _ASM_X86_CURRENT_H */
|