Deleted Added
sdiff udiff text old ( 2680:246e7104f744 ) new ( 2689:dbf969c18a65 )
full compact
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}