diff options
author | Gabe Black <gabeblack@google.com> | 2017-08-25 17:39:18 -0700 |
---|---|---|
committer | Gabe Black <gabeblack@google.com> | 2017-09-11 04:58:38 +0000 |
commit | b9d8700a38ccecfbe97c152bc9fc3b7c3b09e9a2 (patch) | |
tree | 4335c0296aa9f02e3f9378fe983165d80f691f5c /src/arch/mips/kernel_stats.hh | |
parent | 725b19a8154fa557ab3057f07d7cd3c6d798789d (diff) | |
download | gem5-b9d8700a38ccecfbe97c152bc9fc3b7c3b09e9a2.tar.xz |
stats: Get rid of some kernel stats related cruft.
The kernel stat mechanism should really be refactored and moved somewhere
else, but in the mean time there's some old cruft that can be cleared away.
Change-Id: I21e725de590dda0d20bf3bc675bbe976c7b1bd86
Reviewed-on: https://gem5-review.googlesource.com/4600
Reviewed-by: Jason Lowe-Power <jason@lowepower.com>
Reviewed-by: Andreas Sandberg <andreas.sandberg@arm.com>
Maintainer: Andreas Sandberg <andreas.sandberg@arm.com>
Diffstat (limited to 'src/arch/mips/kernel_stats.hh')
-rw-r--r-- | src/arch/mips/kernel_stats.hh | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/arch/mips/kernel_stats.hh b/src/arch/mips/kernel_stats.hh index 5cf6087c8..abb964a71 100644 --- a/src/arch/mips/kernel_stats.hh +++ b/src/arch/mips/kernel_stats.hh @@ -37,17 +37,13 @@ namespace MipsISA { namespace Kernel { -enum cpu_mode { kernel, user, idle, cpu_mode_num }; -extern const char *modestr[]; - class Statistics : public ::Kernel::Statistics { public: - Statistics(System *system) : ::Kernel::Statistics(system) + Statistics() : ::Kernel::Statistics() {} }; - } // namespace MipsISA::Kernel } // namespace MipsISA |