removed incorrect BX_INFO msg

This commit is contained in:
Stanislav Shwartsman 2012-03-07 20:07:57 +00:00
parent 953cd82219
commit 9c27d279b9

View File

@ -44,13 +44,14 @@ bx_bool BX_CPU_C::handleWaitForEvent(void)
if (BX_CPU_THIS_PTR activity_state >= BX_ACTIVITY_STATE_MWAIT)
BX_CPU_THIS_PTR monitor.reset_monitor();
#endif
BX_CPU_THIS_PTR activity_state = 0;
BX_CPU_THIS_PTR activity_state = BX_ACTIVITY_STATE_ACTIVE;
BX_CPU_THIS_PTR inhibit_mask = 0; // clear inhibits for after resume
break;
}
if (BX_CPU_THIS_PTR activity_state == BX_ACTIVITY_STATE_ACTIVE) {
BX_INFO(("handleWaitForEvent: reset detected in HLT state"));
// happens also when MWAIT monitor was hit
// BX_INFO(("handleWaitForEvent: reset detected in HLT state"));
break;
}