mirror of
				https://github.com/qemu/qemu.git
				synced 2025-10-31 04:06:46 +00:00 
			
		
		
		
	 46d702b106
			
		
	
	
		46d702b106
		
	
	
	
	
		
			
			It only needed TARGET_PAGE_SIZE/BITS/BITS_MIN values, so just export them from exec.h Signed-off-by: Juan Quintela <quintela@redhat.com> Reviewed-by: Peter Xu <peterx@redhat.com> Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
		
			
				
	
	
		
			22 lines
		
	
	
		
			500 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			500 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * Target page sizes and friends for non target files
 | |
|  *
 | |
|  * Copyright (c) 2017 Red Hat Inc
 | |
|  *
 | |
|  * Authors:
 | |
|  *  David Alan Gilbert <dgilbert@redhat.com>
 | |
|  *  Juan Quintela <quintela@redhat.com>
 | |
|  *
 | |
|  * This work is licensed under the terms of the GNU GPL, version 2 or later.
 | |
|  * See the COPYING file in the top-level directory.
 | |
|  */
 | |
| 
 | |
| #ifndef EXEC_TARGET_PAGE_H
 | |
| #define EXEC_TARGET_PAGE_H
 | |
| 
 | |
| size_t qemu_target_page_size(void);
 | |
| int qemu_target_page_bits(void);
 | |
| int qemu_target_page_bits_min(void);
 | |
| 
 | |
| #endif
 |