Changeset 25958 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Jan 21, 2010 1:50:20 PM (15 years ago)
- Location:
- trunk/src/VBox/VMM/VMMAll
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAll.cpp
r25935 r25958 711 711 /* 712 712 * Notify the recompiler so it can record this instruction. 713 * Failure happens when it's out of space. We'll return to HC in that case. 714 */ 715 rc = REMNotifyInvalidatePage(pVM, GCPtrPage); 716 if (rc != VINF_SUCCESS) 717 return rc; 713 */ 714 REMNotifyInvalidatePage(pVM, GCPtrPage); 718 715 #endif /* !IN_RING3 */ 719 716 -
trunk/src/VBox/VMM/VMMAll/REMAll.cpp
r25576 r25958 41 41 * Records a invlpg instruction for replaying upon REM entry. 42 42 * 43 * @returns VINF_SUCCESS on success.44 43 * @param pVM The VM handle. 45 44 * @param GCPtrPage The 46 45 */ 47 VMMDECL( int) REMNotifyInvalidatePage(PVM pVM, RTGCPTR GCPtrPage)46 VMMDECL(void) REMNotifyInvalidatePage(PVM pVM, RTGCPTR GCPtrPage) 48 47 { 49 48 /* … … 60 59 61 60 EMRemUnlock(pVM); 62 return VINF_SUCCESS;61 return; 63 62 } 64 63 … … 75 74 } 76 75 77 return VINF_SUCCESS;76 return; 78 77 } 79 78
Note:
See TracChangeset
for help on using the changeset viewer.