diff options
author | Nathan Binkert <binkertn@umich.edu> | 2003-12-24 02:35:33 -0500 |
---|---|---|
committer | Nathan Binkert <binkertn@umich.edu> | 2003-12-24 02:35:33 -0500 |
commit | 3f5ca9e5e81cb921e10ba395f74a6fadd793525c (patch) | |
tree | 747db4c896caed2c5642e46d8bef3bc5c0a2e06a /base/statistics.hh | |
parent | 4bdf46c8193512589b978ee54d174fd9f891262e (diff) | |
download | gem5-3f5ca9e5e81cb921e10ba395f74a6fadd793525c.tar.xz |
initial basic hooks into the stats package to output python code
python dumping takes a name for the output data
base/statistics.cc:
base/statistics.hh:
initial basic hooks into the stats package to output python code
--HG--
extra : convert_revision : 37f52dc03df50aa90346dc9ca341f961e7e855e8
Diffstat (limited to 'base/statistics.hh')
-rw-r--r-- | base/statistics.hh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/base/statistics.hh b/base/statistics.hh index b855c30b8..b72be83bd 100644 --- a/base/statistics.hh +++ b/base/statistics.hh @@ -2983,7 +2983,8 @@ class Temp */ void check(); -void dump(std::ostream &stream, DisplayMode mode = DefaultMode); +void dump(std::ostream &stream, const std::string &name = "", + DisplayMode mode = DefaultMode); void reset(); void registerResetCallback(Callback *cb); |