Changeset 21519 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- Jul 13, 2009 8:17:29 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/REMAll.cpp
r20874 r21519 214 214 215 215 /* 216 * Less than 10 items means we should flush.216 * Less than 20 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 > 10)224 if (++cFree > 20) 225 225 return; 226 226 }
Note:
See TracChangeset
for help on using the changeset viewer.