Changeset 26364 in vbox for trunk/src/VBox
- Timestamp:
- Feb 9, 2010 1:31:20 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 57457
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PGMInternal.h
r26277 r26364 3303 3303 void pgmR3PoolReset(PVM pVM); 3304 3304 void pgmR3PoolClearAll(PVM pVM); 3305 DECLCALLBACK(VBOXSTRICTRC) pgmR3PoolClearAllRendezvous(PVM pVM, PVMCPU pVCpu, void *pvUser); 3305 3306 3306 3307 #endif /* IN_RING3 */ -
trunk/src/VBox/VMM/PGMPhys.cpp
r26348 r26364 830 830 } 831 831 GMMR3FreePagesCleanup(pReq); 832 833 /* Flush the PGM pool cache as we might have stale references to pages that we just freed. */ 834 pgmR3PoolClearAllRendezvous(pVM, pVCpu, NULL); 832 835 833 836 pgmUnlock(pVM); -
trunk/src/VBox/VMM/PGMPool.cpp
r26261 r26364 598 598 * 599 599 */ 600 staticDECLCALLBACK(VBOXSTRICTRC) pgmR3PoolClearAllRendezvous(PVM pVM, PVMCPU pVCpu, void *pvUser)600 DECLCALLBACK(VBOXSTRICTRC) pgmR3PoolClearAllRendezvous(PVM pVM, PVMCPU pVCpu, void *pvUser) 601 601 { 602 602 PPGMPOOL pPool = pVM->pgm.s.CTX_SUFF(pPool);
Note:
See TracChangeset
for help on using the changeset viewer.