diff options
author | Nilay Vaish <nilay@cs.wisc.edu> | 2013-08-07 14:51:17 -0500 |
---|---|---|
committer | Nilay Vaish <nilay@cs.wisc.edu> | 2013-08-07 14:51:17 -0500 |
commit | e0387415988a11f30b5aac66cd5cc32f7387e08e (patch) | |
tree | d0b6b1f6dd744c4cc491d4dca38c9063d69895cf /src/sim | |
parent | b5bb2a25aa702ad3d1a173e9e86d2addc24d9c13 (diff) | |
download | gem5-e0387415988a11f30b5aac66cd5cc32f7387e08e.tar.xz |
x86: add tlb checkpointing
This patch adds checkpointing support to x86 tlb. It upgrades the
cpt_upgrader.py script so that previously created checkpoints can
be updated. It moves the checkpoint version to 6.
Diffstat (limited to 'src/sim')
-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 e523e68a5..aedb2d1ae 100644 --- a/src/sim/serialize.hh +++ b/src/sim/serialize.hh @@ -57,7 +57,7 @@ class SimObject; * 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 = 0x0000000000000005; +static const uint64_t gem5CheckpointVersion = 0x0000000000000006; template <class T> void paramOut(std::ostream &os, const std::string &name, const T ¶m); |