summaryrefslogtreecommitdiff
path: root/src/python/m5/objects
diff options
context:
space:
mode:
authorNathan Binkert <binkertn@umich.edu>2007-02-18 09:08:32 -0800
committerNathan Binkert <binkertn@umich.edu>2007-02-18 09:08:32 -0800
commitee93b4831438be8ab4b21905c3eaaffa0aed4390 (patch)
tree9f690bc4be70c79d3b3b21e56741fb9e0e76adf6 /src/python/m5/objects
parent80b4347d8748e06b5ac907389effcfb59cc340c5 (diff)
downloadgem5-ee93b4831438be8ab4b21905c3eaaffa0aed4390.tar.xz
Get rid of the Serialize and IntervalStats Param contexts
since they're no longer used --HG-- extra : convert_revision : e39590aa03cc4c961d2eb5dab57862811f431e4d
Diffstat (limited to 'src/python/m5/objects')
-rw-r--r--src/python/m5/objects/Root.py3
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()