aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-m32r/current.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/asm-m32r/current.h')
-rw-r--r--include/asm-m32r/current.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/include/asm-m32r/current.h b/include/asm-m32r/current.h
new file mode 100644
index 000000000000..c19d927ff22d
--- /dev/null
+++ b/include/asm-m32r/current.h
@@ -0,0 +1,18 @@
1#ifndef _ASM_M32R_CURRENT_H
2#define _ASM_M32R_CURRENT_H
3
4/* $Id$ */
5
6#include <linux/thread_info.h>
7
8struct task_struct;
9
10static __inline__ struct task_struct *get_current(void)
11{
12 return current_thread_info()->task;
13}
14
15#define current (get_current())
16
17#endif /* _ASM_M32R_CURRENT_H */
18