summaryrefslogtreecommitdiff
path: root/release/src/linux/linux/include/asm-i386/current.h
blob: bc1496a2c9b05320220ca28bf2d151cc6e401391 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef _I386_CURRENT_H
#define _I386_CURRENT_H

struct task_struct;

static inline struct task_struct * get_current(void)
{
	struct task_struct *current;
	__asm__("andl %%esp,%0; ":"=r" (current) : "0" (~8191UL));
	return current;
 }
 
#define current get_current()

#endif /* !(_I386_CURRENT_H) */