2016-10-24 11:35:53 +03:00
|
|
|
#include "qemu/osdep.h"
|
2019-07-09 18:20:52 +03:00
|
|
|
#include "hw/core/cpu.h"
|
2022-12-19 20:09:43 +03:00
|
|
|
#include "exec/replay-core.h"
|
2018-06-22 22:22:05 +03:00
|
|
|
|
2016-10-24 11:35:53 +03:00
|
|
|
void cpu_resume(CPUState *cpu)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-10-16 00:18:32 +03:00
|
|
|
void cpu_remove_sync(CPUState *cpu)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-10-24 11:35:53 +03:00
|
|
|
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;
|
|
|
|
}
|