summaryrefslogblamecommitdiffstats
path: root/include/asm-i386/current.h
blob: 5252ee0f6d7a9ce0fd4825ce4381051334b55aea (plain) (tree)
1
2
3
4
5
6
7
8
9


                       

                           


                   
                                                            
 
                                  




                               
#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) */