blob: 5252ee0f6d7a9ce0fd4825ce4381051334b55aea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#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) */
|