- Timestamp:
- Jun 8, 2009 2:11:14 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/REMAll.cpp
r20409 r20410 47 47 VMMDECL(int) REMNotifyInvalidatePage(PVM pVM, RTGCPTR GCPtrPage) 48 48 { 49 if ( EMTryEnterRemLock(pVM) == VINF_SUCCESS /* if this fails, then we'll just flush the tlb as we don't want to waste time here. */50 && pVM->rem.s.cInvalidatedPages < RT_ELEMENTS(pVM->rem.s.aGCPtrInvalidatedPages))49 if ( pVM->rem.s.cInvalidatedPages < RT_ELEMENTS(pVM->rem.s.aGCPtrInvalidatedPages) 50 && EMTryEnterRemLock(pVM) == VINF_SUCCESS) /* if this fails, then we'll just flush the tlb as we don't want to waste time here. */ 51 51 { 52 52 /*
Note:
See TracChangeset
for help on using the changeset viewer.