Changeset 55435 in vbox for trunk/src/VBox/VMM/VMMR0
- Timestamp:
- Apr 27, 2015 9:08:48 AM (10 years ago)
- Location:
- trunk/src/VBox/VMM/VMMR0
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMR0.cpp
r55129 r55435 1116 1116 1117 1117 #ifdef LOG_ENABLED 1118 if (enmEvent == RTPOWEREVENT_SUSPEND) 1119 SUPR0Printf("hmR0PowerCallback RTPOWEREVENT_SUSPEND\n"); 1120 else 1121 SUPR0Printf("hmR0PowerCallback RTPOWEREVENT_RESUME\n"); 1118 SUPR0Printf("hmR0PowerCallback %s\n", RTPowerGetEventName(enmEvent)); 1122 1119 #endif 1123 1120 … … 1141 1138 /* else nothing to do here for the local init case */ 1142 1139 } 1143 else 1140 else if (enmEvent == RTPOWEREVENT_RESUME) 1144 1141 { 1145 1142 /* Reinit the CPUs from scratch as the suspend state might have -
trunk/src/VBox/VMM/VMMR0/VMMR0.cpp
r55356 r55435 458 458 VMCPU_ASSERT_EMT(pVCpu); 459 459 Assert(pVCpu->vmm.s.hR0ThreadCtx == NIL_RTTHREADCTX); 460 #if defined(RT_OS_LINUX) || defined(RT_OS_SOLARIS)460 #if 0 /* defined(RT_OS_LINUX) || defined(RT_OS_SOLARIS) */ 461 461 int rc = RTThreadCtxHooksCreate(&pVCpu->vmm.s.hR0ThreadCtx); 462 462 if ( RT_FAILURE(rc)
Note:
See TracChangeset
for help on using the changeset viewer.