summaryrefslogtreecommitdiff
path: root/src/sim/sim_events.hh
diff options
context:
space:
mode:
authorSteve Reinhardt <steve.reinhardt@amd.com>2011-01-07 21:50:29 -0800
committerSteve Reinhardt <steve.reinhardt@amd.com>2011-01-07 21:50:29 -0800
commit030736a69b238f1da7f9ed6409ce5ab9e094c9fb (patch)
tree54c8d195e511f4fa1ac8e36142e283539e67ca3c /src/sim/sim_events.hh
parentdf9f99567d43c9dfcecc625dce748c561699b307 (diff)
downloadgem5-030736a69b238f1da7f9ed6409ce5ab9e094c9fb.tar.xz
sim: delete unused CheckSwapEvent code.
There's no way to even create one of these anymore.
Diffstat (limited to 'src/sim/sim_events.hh')
-rw-r--r--src/sim/sim_events.hh14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/sim/sim_events.hh b/src/sim/sim_events.hh
index ffd31f385..17e2cc202 100644
--- a/src/sim/sim_events.hh
+++ b/src/sim/sim_events.hh
@@ -90,19 +90,5 @@ class CountedExitEvent : public Event
virtual const char *description() const;
};
-//
-// Event to check swap usage
-//
-class CheckSwapEvent : public Event
-{
- private:
- int interval;
-
- public:
- CheckSwapEvent(int ival);
- void process(); // process event
-
- virtual const char *description() const;
-};
#endif // __SIM_SIM_EVENTS_HH__