Changeset 834
- Timestamp:
- 02/12/07 13:05:19 (2 years ago)
- Files:
-
- trunk/include/VBox/err.h (modified) (1 diff)
- trunk/include/VBox/mm.h (modified) (1 diff)
- trunk/include/VBox/pgm.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/include/VBox/err.h
r737 r834 378 378 * that the PDE was (probably) marked not-present and it should restart the instruction. */ 379 379 #define VINF_PGM_SYNCPAGE_MODIFIED_PDE 1625 380 /** Physical range crosses dynamic ram chunk boundary; translation to HC ptr not safe. */ 381 #define VERR_PGM_GCPHYS_RANGE_CROSSES_BOUNDARY (-1626) 380 382 /** @} */ 381 383 trunk/include/VBox/mm.h
r1 r834 581 581 * @param pVM VM Handle 582 582 * @param GCPhys Guest context physical address. 583 * @param cbRange Physical range 583 584 * @thread The Emulation Thread. 584 585 * @deprecated 585 586 */ 586 MMDECL(void *) MMPhysGCPhys2HCVirt(PVM pVM, RTGCPHYS GCPhys );587 MMDECL(void *) MMPhysGCPhys2HCVirt(PVM pVM, RTGCPHYS GCPhys, RTUINT cbRange); 587 588 588 589 /** trunk/include/VBox/pgm.h
r210 r834 787 787 * @param pVM The VM handle. 788 788 * @param GCPhys The GC physical address to convert. 789 * @param cbRange Physical range 789 790 * @param pHCPtr Where to store the HC pointer on success. 790 791 */ 791 PGMDECL(int) PGMPhysGCPhys2HCPtr(PVM pVM, RTGCPHYS GCPhys, PRTHCPTR pHCPtr);792 PGMDECL(int) PGMPhysGCPhys2HCPtr(PVM pVM, RTGCPHYS GCPhys, RTUINT cbRange, PRTHCPTR pHCPtr); 792 793 793 794 /**

