aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/asm-i386/current.h
blob: d97328951f5f027b767c28cf44b44f1abfd52aff (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef _I386_CURRENT_H
#define _I386_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 /* !(_I386_CURRENT_H) */