Get rid of the Serialize and IntervalStats Param contexts
authorNathan Binkert <binkertn@umich.edu>
Sun, 18 Feb 2007 17:08:32 +0000 (09:08 -0800)
committerNathan Binkert <binkertn@umich.edu>
Sun, 18 Feb 2007 17:08:32 +0000 (09:08 -0800)
since they're no longer used

--HG--
extra : convert_revision : e39590aa03cc4c961d2eb5dab57862811f431e4d

src/python/m5/objects/Root.py

index cf5174ef3689b7ca0ba33e6de0428c10c0aeff4d..8db4fa5a23be9c18609435fd68da6d2e448f54f2 100644 (file)
@@ -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()