diff options
author | Curtis Dunham <Curtis.Dunham@arm.com> | 2014-02-05 16:17:41 -0600 |
---|---|---|
committer | Curtis Dunham <Curtis.Dunham@arm.com> | 2014-02-05 16:17:41 -0600 |
commit | 04d1f61ae8f2a40cfe61aaf0c0271b212da0c314 (patch) | |
tree | 4162eb5ec4f6cbd82ee6a52c614665652d8a78a2 /src | |
parent | 4a3abf30200d89965c1b5138179e5e3c1560bb84 (diff) | |
download | gem5-04d1f61ae8f2a40cfe61aaf0c0271b212da0c314.tar.xz |
sim: bump checkpoint version for multiple event queues
This patch adds a fix for older checkpoints before support for
multiple event queues were added in changeset 2cce74fe359e. The change
in checkpoint version should really hav ebeen part of the
aforementioned changeset.
Diffstat (limited to 'src')
-rw-r--r-- | src/sim/serialize.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sim/serialize.hh b/src/sim/serialize.hh index 05cb7c50f..2bf85bdf5 100644 --- a/src/sim/serialize.hh +++ b/src/sim/serialize.hh @@ -58,7 +58,7 @@ class EventQueue; * SimObject shouldn't cause the version number to increase, only changes to * existing objects such as serializing/unserializing more state, changing sizes * of serialized arrays, etc. */ -static const uint64_t gem5CheckpointVersion = 0x000000000000000b; +static const uint64_t gem5CheckpointVersion = 0x000000000000000c; template <class T> void paramOut(std::ostream &os, const std::string &name, const T ¶m); |