diff options
author | Nathan Binkert <binkertn@umich.edu> | 2007-02-18 09:08:32 -0800 |
---|---|---|
committer | Nathan Binkert <binkertn@umich.edu> | 2007-02-18 09:08:32 -0800 |
commit | ee93b4831438be8ab4b21905c3eaaffa0aed4390 (patch) | |
tree | 9f690bc4be70c79d3b3b21e56741fb9e0e76adf6 | |
parent | 80b4347d8748e06b5ac907389effcfb59cc340c5 (diff) | |
download | gem5-ee93b4831438be8ab4b21905c3eaaffa0aed4390.tar.xz |
Get rid of the Serialize and IntervalStats Param contexts
since they're no longer used
--HG--
extra : convert_revision : e39590aa03cc4c961d2eb5dab57862811f431e4d
-rw-r--r-- | src/python/m5/objects/Root.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/python/m5/objects/Root.py b/src/python/m5/objects/Root.py index cf5174ef3..8db4fa5a2 100644 --- a/src/python/m5/objects/Root.py +++ b/src/python/m5/objects/Root.py @@ -1,6 +1,5 @@ from m5.SimObject import SimObject from m5.params import * -from Serialize import Serialize class Root(SimObject): type = 'Root' @@ -10,5 +9,3 @@ class Root(SimObject): "print a progress message every n ticks (0 = never)") output_file = Param.String('cout', "file to dump simulator output to") checkpoint = Param.String('', "checkpoint file to load") -# serialize = Param.Serialize(Serialize(), "checkpoint generation options") - serialize = Serialize() |