summaryrefslogtreecommitdiff
path: root/cpu/quiesce_event.hh
diff options
context:
space:
mode:
Diffstat (limited to 'cpu/quiesce_event.hh')
-rw-r--r--cpu/quiesce_event.hh23
1 files changed, 0 insertions, 23 deletions
diff --git a/cpu/quiesce_event.hh b/cpu/quiesce_event.hh
deleted file mode 100644
index 18e88ecce..000000000
--- a/cpu/quiesce_event.hh
+++ /dev/null
@@ -1,23 +0,0 @@
-#ifndef __CPU_QUIESCE_EVENT_HH__
-#define __CPU_QUIESCE_EVENT_HH__
-
-#include "sim/eventq.hh"
-
-class ExecContext;
-
-/** Event for timing out quiesce instruction */
-struct EndQuiesceEvent : public Event
-{
- /** A pointer to the execution context that is quiesced */
- ExecContext *xc;
-
- EndQuiesceEvent(ExecContext *_xc);
-
- /** Event process to occur at interrupt*/
- virtual void process();
-
- /** Event description */
- virtual const char *description();
-};
-
-#endif // __CPU_QUIESCE_EVENT_HH__