Changeset 80007 in vbox for trunk/src/VBox/VMM/VMMR3/VM.cpp
- Timestamp:
- Jul 26, 2019 1:57:38 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/VM.cpp
r79995 r80007 65 65 #include <VBox/vmm/tm.h> 66 66 #include <VBox/vmm/stam.h> 67 #include <VBox/vmm/patm.h>68 #include <VBox/vmm/csam.h>69 67 #include <VBox/vmm/iom.h> 70 68 #include <VBox/vmm/ssm.h> … … 941 939 if (RT_SUCCESS(rc)) 942 940 { 943 #ifdef VBOX_WITH_RAW_MODE 944 rc = CSAMR3Init(pVM); 941 rc = SSMR3RegisterStub(pVM, "CSAM", 0); 945 942 if (RT_SUCCESS(rc)) 946 943 { 947 rc = PATMR3Init(pVM);944 rc = SSMR3RegisterStub(pVM, "PATM", 0); 948 945 if (RT_SUCCESS(rc)) 949 946 { 950 #endif951 947 rc = IOMR3Init(pVM); 952 948 if (RT_SUCCESS(rc)) … … 1017 1013 AssertRC(rc2); 1018 1014 } 1019 #ifdef VBOX_WITH_RAW_MODE1020 int rc2 = PATMR3Term(pVM);1021 AssertRC(rc2);1022 1015 } 1023 int rc2 = CSAMR3Term(pVM);1024 AssertRC(rc2);1025 1016 } 1026 #endif1027 1017 int rc2 = TRPMR3Term(pVM); 1028 1018 AssertRC(rc2);
Note:
See TracChangeset
for help on using the changeset viewer.