quiesce_event.cc revision 2680
1
2#include "cpu/thread_context.hh"
3#include "cpu/quiesce_event.hh"
4
5EndQuiesceEvent::EndQuiesceEvent(ThreadContext *_tc)
6    : Event(&mainEventQueue), tc(_tc)
7{
8}
9
10void
11EndQuiesceEvent::process()
12{
13    tc->activate();
14}
15
16const char*
17EndQuiesceEvent::description()
18{
19    return "End Quiesce Event.";
20}
21