- Timestamp:
- May 4, 2009 3:19:23 PM (16 years ago)
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PGMInternal.h
r19329 r19330 2933 2933 int pgmPoolSyncCR3(PVM pVM); 2934 2934 int pgmPoolTrackFlushGCPhys(PVM pVM, PPGMPAGE pPhysPage, bool *pfFlushTLBs); 2935 void pgmPoolTrackFlushGCPhysPT(PVM pVM, PPGMPAGE pPhysPage, uint16_t iShw, uint16_t cRefs);2936 void pgmPoolTrackFlushGCPhysPTs(PVM pVM, PPGMPAGE pPhysPage, uint16_t iPhysExt);2937 int pgmPoolTrackFlushGCPhysPTsSlow(PVM pVM, PPGMPAGE pPhysPage);2938 PPGMPOOLPHYSEXT pgmPoolTrackPhysExtAlloc(PVM pVM, uint16_t *piPhysExt);2939 void pgmPoolTrackPhysExtFree(PVM pVM, uint16_t iPhysExt);2940 void pgmPoolTrackPhysExtFreeList(PVM pVM, uint16_t iPhysExt);2941 2935 uint16_t pgmPoolTrackPhysExtAddref(PVM pVM, uint16_t u16, uint16_t iShwPT); 2942 2936 void pgmPoolTrackPhysExtDerefGCPhys(PPGMPOOL pPool, PPGMPOOLPAGE pPoolPage, PPGMPAGE pPhysPage); … … 2946 2940 void pgmPoolMonitorModifiedInsert(PPGMPOOL pPool, PPGMPOOLPAGE pPage); 2947 2941 void pgmPoolMonitorModifiedClearAll(PVM pVM); 2948 int pgmPoolMonitorMonitorCR3(PPGMPOOL pPool, uint16_t idxRoot, RTGCPHYS GCPhysCR3);2949 int pgmPoolMonitorUnmonitorCR3(PPGMPOOL pPool, uint16_t idxRoot);2950 2942 #endif 2951 2943 -
trunk/src/VBox/VMM/VMMAll/PGMAllPool.cpp
r19329 r19330 68 68 static const char *pgmPoolPoolKindToStr(uint8_t enmKind); 69 69 #endif 70 71 void pgmPoolTrackFlushGCPhysPT(PVM pVM, PPGMPAGE pPhysPage, uint16_t iShw, uint16_t cRefs); 72 void pgmPoolTrackFlushGCPhysPTs(PVM pVM, PPGMPAGE pPhysPage, uint16_t iPhysExt); 73 int pgmPoolTrackFlushGCPhysPTsSlow(PVM pVM, PPGMPAGE pPhysPage); 74 PPGMPOOLPHYSEXT pgmPoolTrackPhysExtAlloc(PVM pVM, uint16_t *piPhysExt); 75 void pgmPoolTrackPhysExtFree(PVM pVM, uint16_t iPhysExt); 76 void pgmPoolTrackPhysExtFreeList(PVM pVM, uint16_t iPhysExt); 77 70 78 __END_DECLS 71 79
Note:
See TracChangeset
for help on using the changeset viewer.