Changeset 19263 in vbox
- Timestamp:
- Apr 29, 2009 1:05:37 PM (16 years ago)
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PATM/CSAM.cpp
r19141 r19263 1428 1428 RTGCPHYS GCPhys = 0; 1429 1429 uint64_t fFlags = 0; 1430 Assert(pVM->cCPUs == 1); 1431 PVMCPU pVCpu = VMMGetCpu0(pVM); 1430 Assert(pVM->cCPUs == 1 || !CSAMIsEnabled(pVM)); 1432 1431 1433 1432 if (!CSAMIsEnabled(pVM)) 1434 1433 return VINF_SUCCESS; 1434 1435 PVMCPU pVCpu = VMMGetCpu0(pVM); 1435 1436 1436 1437 STAM_PROFILE_START(&pVM->csam.s.StatTimeFlushPage, a); -
trunk/src/VBox/VMM/VMMAll/IOMAll.cpp
r19015 r19263 29 29 #include "IOMInternal.h" 30 30 #include <VBox/vm.h> 31 #include <VBox/vmm.h> 31 32 #include <VBox/selm.h> 32 33 #include <VBox/trpm.h> … … 711 712 VMMDECL(int) IOMInterpretCheckPortIOAccess(PVM pVM, PCPUMCTXCORE pCtxCore, RTIOPORT Port, unsigned cb) 712 713 { 713 /* @todo SMP support */ 714 Assert(pVM->cCPUs == 1); 715 PVMCPU pVCpu = &pVM->aCpus[0]; 714 PVMCPU pVCpu = VMMGetCpu(pVM); 716 715 717 716 /*
Note:
See TracChangeset
for help on using the changeset viewer.