2005-04-16 22:20:36 +00:00
|
|
|
#ifndef _I386_CURRENT_H
|
|
|
|
#define _I386_CURRENT_H
|
|
|
|
|
|
|
|
#include <linux/thread_info.h>
|
|
|
|
|
|
|
|
struct task_struct;
|
|
|
|
|
2006-01-14 21:21:30 +00:00
|
|
|
static __always_inline struct task_struct * get_current(void)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
return current_thread_info()->task;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define current get_current()
|
|
|
|
|
|
|
|
#endif /* !(_I386_CURRENT_H) */
|