Suggested-by: Daniel P. Berrangé <berrange@redhat.com> Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-Id: <20190709152053.16670-2-armbru@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com> [Rebased onto merge commit 95a9457fd44; missed instances of qom/cpu.h in comments replaced]
		
			
				
	
	
		
			37 lines
		
	
	
		
			482 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			482 B
		
	
	
	
		
			C
		
	
	
	
	
	
#include "qemu/osdep.h"
 | 
						|
#include "hw/core/cpu.h"
 | 
						|
#include "sysemu/replay.h"
 | 
						|
#include "sysemu/sysemu.h"
 | 
						|
 | 
						|
bool enable_cpu_pm = false;
 | 
						|
 | 
						|
void cpu_resume(CPUState *cpu)
 | 
						|
{
 | 
						|
}
 | 
						|
 | 
						|
void qemu_init_vcpu(CPUState *cpu)
 | 
						|
{
 | 
						|
}
 | 
						|
 | 
						|
/* User mode emulation does not support record/replay yet.  */
 | 
						|
 | 
						|
bool replay_exception(void)
 | 
						|
{
 | 
						|
    return true;
 | 
						|
}
 | 
						|
 | 
						|
bool replay_has_exception(void)
 | 
						|
{
 | 
						|
    return false;
 | 
						|
}
 | 
						|
 | 
						|
bool replay_interrupt(void)
 | 
						|
{
 | 
						|
    return true;
 | 
						|
}
 | 
						|
 | 
						|
bool replay_has_interrupt(void)
 | 
						|
{
 | 
						|
    return false;
 | 
						|
}
 |