Changeset 46137 in vbox for trunk/src/VBox/VMM
- Timestamp:
- May 17, 2013 8:09:59 AM (12 years ago)
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/Makefile.kmk
r46136 r46137 178 178 VMMR3/PATMA.asm \ 179 179 VMMR3/PATMSSM.cpp \ 180 $(if $(FALSE),VMMR3/PATMR3Dbg.cpp)\180 VMMR3/PATMR3Dbg.cpp \ 181 181 ,) \ 182 182 VMMAll/CPUMAllRegs.cpp \ -
trunk/src/VBox/VMM/VMMR3/DBGFAddrSpace.cpp
r46136 r46137 305 305 /* Take a snapshot of the modules as we might have overlapping 306 306 addresses between the previous and new mapping. */ 307 //RTDbgAsLockExcl(hAs);307 RTDbgAsLockExcl(hAs); 308 308 uint32_t cModules = RTDbgAsModuleCount(hAs); 309 309 if (cModules > 0 && cModules < _4K) … … 357 357 else 358 358 AssertLogRelMsgFailed(("cModules=%#x\n", cModules)); 359 //RTDbgAsUnlockExcl(hAs);359 RTDbgAsUnlockExcl(hAs); 360 360 } 361 361 } … … 614 614 PDMR3LdrEnumModules(pUVM->pVM, dbgfR3AsLazyPopulateRCCallback, hDbgAs); 615 615 #ifdef VBOX_WITH_RAW_MODE 616 //PATMR3DbgPopulateAddrSpace(pUVM->pVM, hDbgAs);616 PATMR3DbgPopulateAddrSpace(pUVM->pVM, hDbgAs); 617 617 #endif 618 618 } -
trunk/src/VBox/VMM/VMMR3/PATM.cpp
r46136 r46137 427 427 428 428 pVM->patm.s.pfnHelperCallGC = 0; 429 //patmR3DbgReset(pVM);429 patmR3DbgReset(pVM); 430 430 431 431 /* Generate all global functions to be used by future patches. */ … … 526 526 return VINF_SUCCESS; 527 527 528 //patmR3DbgTerm(pVM);528 patmR3DbgTerm(pVM); 529 529 530 530 /* Memory was all allocated from the two MM heaps and requires no freeing. */
Note:
See TracChangeset
for help on using the changeset viewer.