mirror of
				https://github.com/qemu/qemu.git
				synced 2025-10-31 12:07:31 +00:00 
			
		
		
		
	 b86f59c715
			
		
	
	
		b86f59c715
		
	
	
	
	
		
			
			This will allow us to centralize the registration of the cpus.c module accelerator operations (in accel/accel-softmmu.c), and trigger it automatically using object hierarchy lookup from the new accel_init_interfaces() initialization step, depending just on which accelerators are available in the code. Rename all tcg-cpus.c, kvm-cpus.c, etc to tcg-accel-ops.c, kvm-accel-ops.c, etc, matching the object type names. Signed-off-by: Claudio Fontana <cfontana@suse.de> Message-Id: <20210204163931.7358-18-cfontana@suse.de> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
		
			
				
	
	
		
			20 lines
		
	
	
		
			507 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			507 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * QEMU TCG Single Threaded vCPUs implementation using instruction counting
 | |
|  *
 | |
|  * Copyright 2020 SUSE LLC
 | |
|  *
 | |
|  * 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 TCG_CPUS_ICOUNT_H
 | |
| #define TCG_CPUS_ICOUNT_H
 | |
| 
 | |
| void icount_handle_deadline(void);
 | |
| void icount_prepare_for_run(CPUState *cpu);
 | |
| void icount_process_data(CPUState *cpu);
 | |
| 
 | |
| void icount_handle_interrupt(CPUState *cpu, int mask);
 | |
| 
 | |
| #endif /* TCG_CPUS_ICOUNT_H */
 |