blob: 37814ae092813490d7977b74fe09c53c71f50dd6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#include "cpu/exec_context.hh"
#include "cpu/quiesce_event.hh"
EndQuiesceEvent::EndQuiesceEvent(ExecContext *_xc)
: Event(&mainEventQueue), xc(_xc)
{
}
void
EndQuiesceEvent::process()
{
xc->activate();
}
const char*
EndQuiesceEvent::description()
{
return "End Quiesce Event.";
}
|