Get rid of the Serialize and IntervalStats Param contexts

since they're no longer used

--HG--
extra : convert_revision : e39590aa03cc4c961d2eb5dab57862811f431e4d
This commit is contained in:
Nathan Binkert 2007-02-18 09:08:32 -08:00
parent 80b4347d87
commit ee93b48314

View 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()