Changeset 45555 in vbox for trunk/src/VBox/VMM/VMMR3
- Timestamp:
- Apr 15, 2013 3:17:04 PM (12 years ago)
- Location:
- trunk/src/VBox/VMM/VMMR3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/HM.cpp
r45533 r45555 15 15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. 16 16 */ 17 17 18 18 19 /******************************************************************************* … … 50 51 #include <iprt/env.h> 51 52 #include <iprt/thread.h> 53 52 54 53 55 /******************************************************************************* … … 280 282 if ((disallowed0) & (featflag)) \ 281 283 LogRel(("HM: " #featflag " *must* be set\n")); \ 282 } while (0)284 } while (0) 283 285 284 286 #define VMX_REPORT_CAPABILITY(msrcaps, cap) \ … … 286 288 if ((msrcaps) & (cap)) \ 287 289 LogRel(("HM: " #cap "\n")); \ 288 } while(0) 290 } while (0) 291 289 292 290 293 /******************************************************************************* … … 296 299 static int hmR3InitFinalizeR0(PVM pVM); 297 300 static int hmR3TermCPU(PVM pVM); 301 298 302 299 303 -
trunk/src/VBox/VMM/VMMR3/SELM.cpp
r45533 r45555 483 483 * Update shadow GDT/LDT/TSS write access handlers. 484 484 */ 485 int rc; 485 int rc; NOREF(rc); 486 486 #ifdef SELM_TRACK_SHADOW_GDT_CHANGES 487 487 if (pVM->selm.s.paGdtRC != NIL_RTRCPTR)
Note:
See TracChangeset
for help on using the changeset viewer.