- Timestamp:
- Oct 1, 2020 12:39:20 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 140668
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/ssm.h
r85121 r86375 1159 1159 1160 1160 1161 VMMR3 _INT_DECL(void)SSMR3Term(PVM pVM);1161 VMMR3DECL(void) SSMR3Term(PVM pVM); 1162 1162 VMMR3_INT_DECL(int) 1163 1163 SSMR3RegisterDevice(PVM pVM, PPDMDEVINS pDevIns, const char *pszName, uint32_t uInstance, uint32_t uVersion, -
trunk/src/VBox/VMM/VMMR3/SSM.cpp
r82968 r86375 904 904 * 905 905 * @param pVM The cross context VM structure. 906 */ 907 VMMR3_INT_DECL(void) SSMR3Term(PVM pVM) 906 * @note Not using VMMR3_INT_DECL because of testcases. 907 */ 908 VMMR3DECL(void) SSMR3Term(PVM pVM) 908 909 { 909 910 if (pVM->ssm.s.fInitialized) -
trunk/src/VBox/VMM/testcase/tstMMHyperHeap.cpp
r82968 r86375 21 21 *********************************************************************************************************************************/ 22 22 #include <VBox/vmm/mm.h> 23 #include <VBox/vmm/dbgf.h> 24 #include <VBox/vmm/ssm.h> 23 25 #include <VBox/vmm/stam.h> 24 26 #include <VBox/vmm/vm.h> … … 267 269 RTLogFlush(NULL); 268 270 #endif 271 SSMR3Term(pVM); 272 STAMR3TermUVM(pUVM); 273 DBGFR3TermUVM(pUVM); 274 MMR3TermUVM(pUVM); 269 275 SUPR3PageFreeEx(pVM, RT_ELEMENTS(aPages)); 270 276 RTMemPageFree(pUVM, RT_ALIGN_Z(sizeof(*pUVM), PAGE_SIZE));
Note:
See TracChangeset
for help on using the changeset viewer.