diff options
author | Pavel Dovgalyuk | 2019-07-25 10:44:43 +0200 |
---|---|---|
committer | Paolo Bonzini | 2019-08-20 17:26:22 +0200 |
commit | 13f267133f349f8a322b5385a58688f0dcdf9ed2 (patch) | |
tree | 2baebecd68234ab002c1e79f9c28d9cafa1c4f48 /include/sysemu | |
parent | replay: refine replay-time module (diff) | |
download | qemu-13f267133f349f8a322b5385a58688f0dcdf9ed2.tar.gz qemu-13f267133f349f8a322b5385a58688f0dcdf9ed2.tar.xz qemu-13f267133f349f8a322b5385a58688f0dcdf9ed2.zip |
replay: rename step-related variables and functions
This patch renames replay_get_current_step() and related variables
to make these names consistent with existing 'icount' command line
option and future record/replay hmp/qmp commands.
Signed-off-by: Pavel Dovgalyuk <Pavel.Dovgaluk@ispras.ru>
Message-Id: <156404428377.18669.15476429889039912070.stgit@pasha-Precision-3630-Tower>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'include/sysemu')
-rw-r--r-- | include/sysemu/replay.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sysemu/replay.h b/include/sysemu/replay.h index 2f2ccdbc98..d223edda11 100644 --- a/include/sysemu/replay.h +++ b/include/sysemu/replay.h @@ -75,7 +75,7 @@ void replay_add_blocker(Error *reason); /* Processing the instructions */ /*! Returns number of executed instructions. */ -uint64_t replay_get_current_step(void); +uint64_t replay_get_current_icount(void); /*! Returns number of instructions to execute in replay mode. */ int replay_get_instructions(void); /*! Updates instructions counter in replay mode. */ |