aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-x86/current_32.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/asm-x86/current_32.h')
-rw-r--r--include/asm-x86/current_32.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/include/asm-x86/current_32.h b/include/asm-x86/current_32.h
deleted file mode 100644
index 5af9bdb97a16..000000000000
--- a/include/asm-x86/current_32.h
+++ /dev/null
@@ -1,17 +0,0 @@
1#ifndef _I386_CURRENT_H
2#define _I386_CURRENT_H
3
4#include <linux/compiler.h>
5#include <asm/percpu.h>
6
7struct task_struct;
8
9DECLARE_PER_CPU(struct task_struct *, current_task);
10static __always_inline struct task_struct *get_current(void)
11{
12 return x86_read_percpu(current_task);
13}
14
15#define current get_current()
16
17#endif /* !(_I386_CURRENT_H) */