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