From b90711ea53f51d85890dd6e1bed0ca852adb8074 Mon Sep 17 00:00:00 2001 From: Brandon Potter Date: Fri, 24 Jul 2015 12:25:22 -0700 Subject: base: refactor process class (specifically FdMap and friends) This patch extends the previous patch's alterations around fd_map. It cleans up some of the uglier code in the process file and replaces it with a more concise C++11 version. As part of the changes, the FdMap class is pulled out of the Process class and receives its own file. --- src/sim/serialize.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/sim/serialize.hh') diff --git a/src/sim/serialize.hh b/src/sim/serialize.hh index ea2bd2928..a0be62db5 100644 --- a/src/sim/serialize.hh +++ b/src/sim/serialize.hh @@ -76,7 +76,7 @@ typedef std::ostream CheckpointOut; * 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 = 0x000000000000000e; +static const uint64_t gem5CheckpointVersion = 0x000000000000000f; template void paramOut(CheckpointOut &cp, const std::string &name, const T ¶m); -- cgit v1.2.3