Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 |