| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | #ifndef _I386_CURRENT_H
 | 
					
						
							|  |  |  | #define _I386_CURRENT_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-12-07 02:14:03 +01:00
										 |  |  | #include <linux/compiler.h>
 | 
					
						
							| 
									
										
										
										
											2007-05-02 19:27:16 +02:00
										 |  |  | #include <asm/percpu.h>
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | struct task_struct; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-05-02 19:27:16 +02:00
										 |  |  | DECLARE_PER_CPU(struct task_struct *, current_task); | 
					
						
							| 
									
										
										
										
											2006-12-07 02:14:03 +01:00
										 |  |  | static __always_inline struct task_struct *get_current(void) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2007-05-02 19:27:16 +02:00
										 |  |  | 	return x86_read_percpu(current_task); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  |   | 
					
						
							|  |  |  | #define current get_current()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif /* !(_I386_CURRENT_H) */
 |