G_NORETURN was introduced in glib 2.68, fallback to G_GNUC_NORETURN in glib-compat. Note that this attribute must be placed before the function declaration (bringing a bit of consistency in qemu codebase usage). Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Reviewed-by: Warner Losh <imp@bsdimp.com> Message-Id: <20220420132624.2439741-20-marcandre.lureau@redhat.com>
		
			
				
	
	
		
			22 lines
		
	
	
		
			550 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			550 B
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * Internal execution defines for qemu
 | 
						|
 *
 | 
						|
 *  Copyright (c) 2003 Fabrice Bellard
 | 
						|
 *
 | 
						|
 * SPDX-License-Identifier: LGPL-2.1-or-later
 | 
						|
 */
 | 
						|
 | 
						|
#ifndef ACCEL_TCG_INTERNAL_H
 | 
						|
#define ACCEL_TCG_INTERNAL_H
 | 
						|
 | 
						|
#include "exec/exec-all.h"
 | 
						|
 | 
						|
TranslationBlock *tb_gen_code(CPUState *cpu, target_ulong pc,
 | 
						|
                              target_ulong cs_base, uint32_t flags,
 | 
						|
                              int cflags);
 | 
						|
G_NORETURN void cpu_io_recompile(CPUState *cpu, uintptr_t retaddr);
 | 
						|
void page_init(void);
 | 
						|
void tb_htable_init(void);
 | 
						|
 | 
						|
#endif /* ACCEL_TCG_INTERNAL_H */
 |