This commit was manufactured by cvs2svn to create branch 'vserver'.
[linux-2.6.git] / include / asm-m32r / current.h
1 #ifndef _ASM_M32R_CURRENT_H
2 #define _ASM_M32R_CURRENT_H
3
4 /* $Id$ */
5
6 #include <linux/thread_info.h>
7
8 struct task_struct;
9
10 static __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