Changeset 22707 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- Sep 2, 2009 11:02:48 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/REMAll.cpp
r21519 r22707 214 214 215 215 /* 216 * Less than 20items means we should flush.216 * Less than 48 items means we should flush. 217 217 */ 218 218 uint32_t cFree = 0; … … 222 222 { 223 223 Assert(idx < RT_ELEMENTS(pVM->rem.s.aHandlerNotifications)); 224 if (++cFree > 20)224 if (++cFree >= 48) 225 225 return; 226 226 }
Note:
See TracChangeset
for help on using the changeset viewer.