Changeset 60228 in vbox for trunk/src/VBox/VMM/include
- Timestamp:
- Mar 28, 2016 6:28:22 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/PGMInternal.h
r58781 r60228 363 363 */ 364 364 #ifdef IN_RC 365 # define PGM_INVL_PG(pVCpu, GCVirt) ASMInvalidatePage(( void *)(uintptr_t)(GCVirt))365 # define PGM_INVL_PG(pVCpu, GCVirt) ASMInvalidatePage((uintptr_t)(GCVirt)) 366 366 #elif defined(IN_RING0) 367 367 # define PGM_INVL_PG(pVCpu, GCVirt) HMInvalidatePage(pVCpu, (RTGCPTR)(GCVirt)) … … 377 377 */ 378 378 #ifdef IN_RC 379 # define PGM_INVL_PG_ALL_VCPU(pVM, GCVirt) ASMInvalidatePage(( void *)(uintptr_t)(GCVirt))379 # define PGM_INVL_PG_ALL_VCPU(pVM, GCVirt) ASMInvalidatePage((uintptr_t)(GCVirt)) 380 380 #elif defined(IN_RING0) 381 381 # define PGM_INVL_PG_ALL_VCPU(pVM, GCVirt) HMInvalidatePageOnAllVCpus(pVM, (RTGCPTR)(GCVirt))
Note:
See TracChangeset
for help on using the changeset viewer.