mirror of
https://github.com/torvalds/linux.git
synced 2024-10-31 17:21:49 +00:00
d9b5444eeb
"extern inline" doesn't make much sense. Signed-off-by: Adrian Bunk <bunk@stusta.de> Acked-by: Mikael Starvik <starvik@axis.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
16 lines
268 B
C
16 lines
268 B
C
#ifndef _CRIS_CURRENT_H
|
|
#define _CRIS_CURRENT_H
|
|
|
|
#include <linux/thread_info.h>
|
|
|
|
struct task_struct;
|
|
|
|
static inline struct task_struct * get_current(void)
|
|
{
|
|
return current_thread_info()->task;
|
|
}
|
|
|
|
#define current get_current()
|
|
|
|
#endif /* !(_CRIS_CURRENT_H) */
|