 2a6a4076e1
			
		
	
	
		2a6a4076e1
		
	
	
	
	
		
			
			Cleaned up with scripts/clean-header-guards.pl. Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Richard Henderson <rth@twiddle.net>
		
			
				
	
	
		
			13 lines
		
	
	
		
			240 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			240 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #ifndef QEMU_MMAP_ALLOC_H
 | |
| #define QEMU_MMAP_ALLOC_H
 | |
| 
 | |
| #include "qemu-common.h"
 | |
| 
 | |
| size_t qemu_fd_getpagesize(int fd);
 | |
| 
 | |
| void *qemu_ram_mmap(int fd, size_t size, size_t align, bool shared);
 | |
| 
 | |
| void qemu_ram_munmap(void *ptr, size_t size);
 | |
| 
 | |
| #endif
 |