mirror of
https://github.com/mii443/qemu.git
synced 2025-12-03 02:58:29 +00:00
system/replay: Restrict icount to system emulation
Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Message-ID: <20231208113529.74067-7-philmd@linaro.org>
This commit is contained in:
@@ -6,10 +6,6 @@
|
||||
|
||||
ICountMode use_icount = ICOUNT_DISABLED;
|
||||
|
||||
void icount_update(CPUState *cpu)
|
||||
{
|
||||
abort();
|
||||
}
|
||||
bool icount_configure(QemuOpts *opts, Error **errp)
|
||||
{
|
||||
/* signal error */
|
||||
@@ -22,21 +18,6 @@ int64_t icount_get_raw(void)
|
||||
abort();
|
||||
return 0;
|
||||
}
|
||||
int64_t icount_get(void)
|
||||
{
|
||||
abort();
|
||||
return 0;
|
||||
}
|
||||
int64_t icount_to_ns(int64_t icount)
|
||||
{
|
||||
abort();
|
||||
return 0;
|
||||
}
|
||||
int64_t icount_round(int64_t count)
|
||||
{
|
||||
abort();
|
||||
return 0;
|
||||
}
|
||||
void icount_start_warp_timer(void)
|
||||
{
|
||||
abort();
|
||||
|
||||
Reference in New Issue
Block a user