Changeset 23831 in vbox
- Timestamp:
- Oct 16, 2009 9:08:39 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 53588
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PGMPhys.cpp
r23488 r23831 3114 3114 pVM->pgm.s.cZeroPages)); 3115 3115 if ( rc != VERR_NO_MEMORY 3116 && rc != VERR_LOCK_FAILED) 3116 && rc != VERR_LOCK_FAILED 3117 && rc != VERR_TRY_AGAIN) 3117 3118 { 3118 3119 for (uint32_t i = 0; i < RT_ELEMENTS(pVM->pgm.s.aHandyPages); i++) … … 3142 3143 VM_FF_SET(pVM, VM_FF_PGM_NO_MEMORY); 3143 3144 if ( rc == VERR_NO_MEMORY 3144 || rc == VERR_LOCK_FAILED) 3145 || rc == VERR_LOCK_FAILED 3146 || rc == VERR_TRY_AGAIN) 3145 3147 rc = VINF_EM_NO_MEMORY; 3146 3148 }
Note:
See TracChangeset
for help on using the changeset viewer.