diff options
author | Steve Reinhardt <steve.reinhardt@amd.com> | 2011-01-07 21:50:29 -0800 |
---|---|---|
committer | Steve Reinhardt <steve.reinhardt@amd.com> | 2011-01-07 21:50:29 -0800 |
commit | c22be9f2f016872b05d65c82055ddc936b4aa075 (patch) | |
tree | a261c6044632eab6cd472869932a9ddfb4e425c1 /src/sim/stat_control.hh | |
parent | 94807214c417f3124e2824597c2867f91c1017b3 (diff) | |
download | gem5-c22be9f2f016872b05d65c82055ddc936b4aa075.tar.xz |
stats: rename StatEvent() function to schedStatEvent().
This follows the style rules and is more descriptive.
Diffstat (limited to 'src/sim/stat_control.hh')
-rw-r--r-- | src/sim/stat_control.hh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/sim/stat_control.hh b/src/sim/stat_control.hh index 78031b666..ac3c44960 100644 --- a/src/sim/stat_control.hh +++ b/src/sim/stat_control.hh @@ -34,7 +34,8 @@ namespace Stats { void initSimStats(); -void StatEvent(bool dump, bool reset, Tick when = curTick, Tick repeat = 0); +void schedStatEvent(bool dump, bool reset, Tick when = curTick, + Tick repeat = 0); } // namespace Stats |