Changeset 43387 in vbox for trunk/src/VBox/Main
- Timestamp:
- Sep 21, 2012 9:40:25 AM (12 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/MachineDebuggerImpl.cpp
r39712 r43387 29 29 #include <VBox/vmm/vm.h> 30 30 #include <VBox/vmm/tm.h> 31 #include <VBox/vmm/h waccm.h>31 #include <VBox/vmm/hm.h> 32 32 #include <VBox/err.h> 33 33 #include <iprt/cpp/utils.h> … … 607 607 608 608 if (pVM.isOk()) 609 *aEnabled = H WACCMIsEnabled (pVM.raw());609 *aEnabled = HMIsEnabled (pVM.raw()); 610 610 else 611 611 *aEnabled = false; … … 632 632 633 633 if (pVM.isOk()) 634 *aEnabled = H WACCMR3IsNestedPagingActive (pVM.raw());634 *aEnabled = HMR3IsNestedPagingActive (pVM.raw()); 635 635 else 636 636 *aEnabled = false; … … 657 657 658 658 if (pVM.isOk()) 659 *aEnabled = H WACCMR3IsVPIDActive (pVM.raw());659 *aEnabled = HMR3IsVPIDActive (pVM.raw()); 660 660 else 661 661 *aEnabled = false; … … 1080 1080 if (SUCCEEDED(hrc)) 1081 1081 { 1082 int vrc = H WACCMR3InjectNMI(ptrVM);1082 int vrc = HMR3InjectNMI(ptrVM); 1083 1083 if (RT_SUCCESS(vrc)) 1084 1084 hrc = S_OK; 1085 1085 else 1086 hrc = setError(E_FAIL, tr("H WACCMR3InjectNMI failed with %Rrc"), vrc);1086 hrc = setError(E_FAIL, tr("HMR3InjectNMI failed with %Rrc"), vrc); 1087 1087 } 1088 1088 } -
trunk/src/VBox/Main/src-server/HostImpl.cpp
r42664 r43387 142 142 #endif 143 143 144 /* XXX Solaris: definitions in /usr/include/sys/regset.h clash with h wacc_svm.h */144 /* XXX Solaris: definitions in /usr/include/sys/regset.h clash with hm_svm.h */ 145 145 #undef DS 146 146 #undef ES … … 151 151 152 152 #include <VBox/usb.h> 153 #include <VBox/vmm/h wacc_svm.h>153 #include <VBox/vmm/hm_svm.h> 154 154 #include <VBox/err.h> 155 155 #include <VBox/settings.h>
Note:
See TracChangeset
for help on using the changeset viewer.