Merge with head.
[gem5.git] / src / cpu / quiesce_event.cc
index 8dd20db0230614af86f965f5e78f1814234b1a30..fa79e6d1efdc2a4d11e0d422b7c2b8840a903d81 100644 (file)
@@ -28,6 +28,7 @@
  * Authors: Kevin Lim
  */
 
+#include "cpu/base.hh"
 #include "cpu/thread_context.hh"
 #include "cpu/quiesce_event.hh"
 
@@ -39,6 +40,7 @@ EndQuiesceEvent::EndQuiesceEvent(ThreadContext *_tc)
 void
 EndQuiesceEvent::process()
 {
+    DPRINTF(Quiesce, "activating %s\n", tc->getCpuPtr()->name());
     tc->activate();
 }