blob: 5252ee0f6d7a9ce0fd4825ce4381051334b55aea [file] [log] [blame]
#ifndef _I386_CURRENT_H
#define _I386_CURRENT_H
#include <asm/pda.h>
#include <linux/compiler.h>
struct task_struct;
static __always_inline struct task_struct *get_current(void)
{
return read_pda(pcurrent);
}
#define current get_current()
#endif /* !(_I386_CURRENT_H) */