summaryrefslogtreecommitdiff
path: root/src/base/stats/info.hh
diff options
context:
space:
mode:
authorNathan Binkert <nate@binkert.org>2010-06-15 08:34:19 -0700
committerNathan Binkert <nate@binkert.org>2010-06-15 08:34:19 -0700
commite54b673315ac9f0d0a96a5d92f33a34d1a3bc110 (patch)
tree12519170ca7a55224f4905e8aa6501d8e019d0cd /src/base/stats/info.hh
parent86a93fe7b9576045b5e085965ec85692379823e7 (diff)
downloadgem5-e54b673315ac9f0d0a96a5d92f33a34d1a3bc110.tar.xz
stats: rename print to display so it work in python
Diffstat (limited to 'src/base/stats/info.hh')
-rw-r--r--src/base/stats/info.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/base/stats/info.hh b/src/base/stats/info.hh
index 85a0df447..4987fa810 100644
--- a/src/base/stats/info.hh
+++ b/src/base/stats/info.hh
@@ -44,7 +44,7 @@ const FlagsType none = 0x0000;
/** This Stat is Initialized */
const FlagsType init = 0x0001;
/** Print this stat. */
-const FlagsType print = 0x0002;
+const FlagsType display = 0x0002;
/** Print the total. */
const FlagsType total = 0x0010;
/** Print the percent of the total that this entry represents. */
@@ -59,7 +59,7 @@ const FlagsType nozero = 0x0100;
const FlagsType nonan = 0x0200;
/** Mask of flags that can't be set directly */
-const FlagsType __reserved = init | print;
+const FlagsType __reserved = init | display;
struct StorageParams
{