Get rid of the printExtraOutput stuff
authorNathan Binkert <binkertn@umich.edu>
Fri, 26 Mar 2004 10:43:29 +0000 (05:43 -0500)
committerNathan Binkert <binkertn@umich.edu>
Fri, 26 Mar 2004 10:43:29 +0000 (05:43 -0500)
--HG--
extra : convert_revision : d82718ad4b3c5dd56a99c727e78b39917f9d4541

sim/sim_object.cc
sim/sim_object.hh

index c55021e41ab04dde132521c97f0f85b724ad44cb..5534ea8409a914d05753ea7da73606fc3476c269 100644 (file)
@@ -83,14 +83,6 @@ SimObject::resetStats()
 {
 }
 
-//
-// no default extra output
-//
-void
-SimObject::printExtraOutput(ostream &os)
-{
-}
-
 //
 // static function:
 //   call regStats() on all SimObjects and then regFormulas() on all
@@ -161,21 +153,6 @@ SimObject::resetAllStats()
     }
 }
 
-//
-// static function: call printExtraOutput() on all SimObjects.
-//
-void
-SimObject::printAllExtraOutput(ostream &os)
-{
-    SimObjectList::iterator i = simObjectList.begin();
-    SimObjectList::iterator end = simObjectList.end();
-
-    for (; i != end; ++i) {
-        SimObject *obj = *i;
-        obj->printExtraOutput(os);
-   }
-}
-
 //
 // static function: serialize all SimObjects.
 //
index aaaafc04bf9946b9df938996327aa716e6e8fb8a..b1dd19475c446dbfb4cc8e4a17b1a568c1cf4c73 100644 (file)
@@ -74,19 +74,12 @@ class SimObject : public Serializable
     virtual void regFormulas();
     virtual void resetStats();
 
-    // print extra results for this object not covered by registered
-    // statistics (called at end of simulation)
-    virtual void printExtraOutput(std::ostream&);
-
     // static: call reg_stats on all SimObjects
     static void regAllStats();
 
     // static: call resetStats on all SimObjects
     static void resetAllStats();
 
-    // static: call printExtraOutput on all SimObjects
-    static void printAllExtraOutput(std::ostream&);
-
     // static: call nameOut() & serialize() on all SimObjects
     static void serializeAll(std::ostream &);
 };