summaryrefslogtreecommitdiff
path: root/src/arch/arm/freebsd/system.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/arm/freebsd/system.hh')
-rw-r--r--src/arch/arm/freebsd/system.hh16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/arch/arm/freebsd/system.hh b/src/arch/arm/freebsd/system.hh
index 17ace7cc6..50c405d15 100644
--- a/src/arch/arm/freebsd/system.hh
+++ b/src/arch/arm/freebsd/system.hh
@@ -44,13 +44,8 @@
#include "params/FreebsdArmSystem.hh"
#include "sim/core.hh"
-class DumpStatsPCEventF;
-
class FreebsdArmSystem : public GenericArmSystem
{
- protected:
- DumpStatsPCEventF *dumpStatsPCEventF;
-
public:
/** Boilerplate params code */
typedef FreebsdArmSystemParams Params;
@@ -118,16 +113,5 @@ class FreebsdArmSystem : public GenericArmSystem
Addr bootReleaseAddr;
};
-class DumpStatsPCEventF : public PCEvent
-{
- public:
- DumpStatsPCEventF(PCEventQueue *q, const std::string &desc, Addr addr)
- : PCEvent(q, desc, addr)
- {}
-
- virtual void process(ThreadContext* tc);
-};
-
-
#endif // __ARCH_ARM_FREEBSD_SYSTEM_HH__