mirror of
				https://github.com/qemu/qemu.git
				synced 2025-10-31 12:07:31 +00:00 
			
		
		
		
	 4bdccdec70
			
		
	
	
		4bdccdec70
		
	
	
	
	
		
			
			Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Message-Id: <20201110192316.26397-7-alex.bennee@linaro.org>
		
			
				
	
	
		
			23 lines
		
	
	
		
			466 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			466 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * QEMU HAXM support
 | |
|  *
 | |
|  * Copyright (c) 2015, Intel Corporation
 | |
|  *
 | |
|  * Copyright 2016 Google, Inc.
 | |
|  *
 | |
|  * This software is licensed under the terms of the GNU General Public
 | |
|  * License version 2, as published by the Free Software Foundation, and
 | |
|  * may be copied, distributed, and modified under those terms.
 | |
|  *
 | |
|  * See the COPYING file in the top-level directory.
 | |
|  *
 | |
|  */
 | |
| 
 | |
| #include "qemu/osdep.h"
 | |
| #include "sysemu/hax.h"
 | |
| 
 | |
| int hax_sync_vcpus(void)
 | |
| {
 | |
|     return 0;
 | |
| }
 |