diff options
author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2024-01-06 00:23:37 +0100 |
---|---|---|
committer | Philippe Mathieu-Daudé <philmd@linaro.org> | 2024-01-19 12:28:59 +0100 |
commit | 16ad9788b5368fb4aded10d1f050316ea6df9989 (patch) | |
tree | 514369eacbbfbeb909fa0b8bbefb56a88ee450c6 /stubs | |
parent | 284a7ee2e290e0c9b8cd3ea6164d92386933054f (diff) |
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>
Diffstat (limited to 'stubs')
-rw-r--r-- | stubs/icount.c | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/stubs/icount.c b/stubs/icount.c index 1eb35b10a8..9f9a59f55b 100644 --- a/stubs/icount.c +++ b/stubs/icount.c @@ -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(); |