Changeset 79020 in vbox
- Timestamp:
- Jun 6, 2019 12:12:09 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/win/alloc-win.cpp
r78334 r79020 111 111 if (fFlags & RTMEMPAGEALLOC_F_ADVISE_LOCKED) 112 112 { 113 /** @todo check why we get ERROR_WORKING_SET_QUOTA here. */ 113 114 BOOL const fOkay = VirtualLock(pv, cbAligned); 114 AssertMsg(fOkay , ("pv=%p cb=%d lasterr=%d\n", pv, cb, GetLastError()));115 AssertMsg(fOkay || GetLastError() == ERROR_WORKING_SET_QUOTA, ("pv=%p cb=%d lasterr=%d\n", pv, cb, GetLastError())); 115 116 NOREF(fOkay); 116 117 }
Note:
See TracChangeset
for help on using the changeset viewer.