mirror of
				https://github.com/qemu/qemu.git
				synced 2025-10-31 12:07:31 +00:00 
			
		
		
		
	 d385a60571
			
		
	
	
		d385a60571
		
	
	
	
	
		
			
			Standardize on g_assert_not_reached() for "should not happen". Retain abort() when preceeded by fprintf or error_report. Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Message-id: 20220501055028.646596-7-richard.henderson@linaro.org Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
		
			
				
	
	
		
			25 lines
		
	
	
		
			494 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			494 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * QEMU KVM ARM specific function stubs
 | |
|  *
 | |
|  * Copyright Linaro Limited 2013
 | |
|  *
 | |
|  * Author: Peter Maydell <peter.maydell@linaro.org>
 | |
|  *
 | |
|  * This work is licensed under the terms of the GNU GPL, version 2 or later.
 | |
|  * See the COPYING file in the top-level directory.
 | |
|  *
 | |
|  */
 | |
| #include "qemu/osdep.h"
 | |
| #include "cpu.h"
 | |
| #include "kvm_arm.h"
 | |
| 
 | |
| bool write_kvmstate_to_list(ARMCPU *cpu)
 | |
| {
 | |
|     g_assert_not_reached();
 | |
| }
 | |
| 
 | |
| bool write_list_to_kvmstate(ARMCPU *cpu, int level)
 | |
| {
 | |
|     g_assert_not_reached();
 | |
| }
 |