diff options
author | Nathan Binkert <binkertn@umich.edu> | 2004-03-26 05:43:29 -0500 |
---|---|---|
committer | Nathan Binkert <binkertn@umich.edu> | 2004-03-26 05:43:29 -0500 |
commit | 13483c98be4ad4976f029f7856edbd2f8437fcd8 (patch) | |
tree | e2d82f2ddbb91752b3622f282298ffcbea16e9b4 /sim/sim_object.hh | |
parent | f299bb01aca07b92e53b34db63dfa7a486e004d3 (diff) | |
download | gem5-13483c98be4ad4976f029f7856edbd2f8437fcd8.tar.xz |
Get rid of the printExtraOutput stuff
--HG--
extra : convert_revision : d82718ad4b3c5dd56a99c727e78b39917f9d4541
Diffstat (limited to 'sim/sim_object.hh')
-rw-r--r-- | sim/sim_object.hh | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/sim/sim_object.hh b/sim/sim_object.hh index aaaafc04b..b1dd19475 100644 --- a/sim/sim_object.hh +++ b/sim/sim_object.hh @@ -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 &); }; |