| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * This program is used to generate definitions needed by | 
					
						
							|  |  |  |  * assembly language modules. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * We use the technique used in the OSF Mach kernel code: | 
					
						
							|  |  |  |  * generate asm statements containing #defines, | 
					
						
							|  |  |  |  * compile this file to assembler, and then extract the | 
					
						
							|  |  |  |  * #defines from the assembly-language output. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * On sparc, thread_info data is static and TI_XXX offsets are computed by hand. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <linux/sched.h>
 | 
					
						
							|  |  |  | // #include <linux/mm.h>
 | 
					
						
							| 
									
										
										
										
											2008-04-29 01:04:01 -07:00
										 |  |  | #include <linux/kbuild.h>
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-29 21:51:05 -08:00
										 |  |  | #ifdef CONFIG_SPARC32
 | 
					
						
							|  |  |  | int sparc32_foo(void) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	DEFINE(AOFF_thread_fork_kpsr, | 
					
						
							|  |  |  | 			offsetof(struct thread_struct, fork_kpsr)); | 
					
						
							| 
									
										
										
										
											2008-11-29 21:51:05 -08:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | int sparc64_foo(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int foo(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	BLANK(); | 
					
						
							|  |  |  | 	DEFINE(AOFF_task_thread, offsetof(struct task_struct, thread)); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	BLANK(); | 
					
						
							|  |  |  | 	DEFINE(AOFF_mm_context, offsetof(struct mm_struct, context)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* DEFINE(NUM_USER_SEGMENTS, TASK_SIZE>>28); */ | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2008-11-29 21:51:05 -08:00
										 |  |  | 
 |