Merge tag 'pm-4.13-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
[linux/fpc-iii.git] / arch / x86 / include / asm / current.h
blob9476c04ee6357e79ba0a9c59c8b4001d32c653eb
1 #ifndef _ASM_X86_CURRENT_H
2 #define _ASM_X86_CURRENT_H
4 #include <linux/compiler.h>
5 #include <asm/percpu.h>
7 #ifndef __ASSEMBLY__
8 struct task_struct;
10 DECLARE_PER_CPU(struct task_struct *, current_task);
12 static __always_inline struct task_struct *get_current(void)
14 return this_cpu_read_stable(current_task);
17 #define current get_current()
19 #endif /* __ASSEMBLY__ */
21 #endif /* _ASM_X86_CURRENT_H */