VirtualBox

Changeset 79020 in vbox


Ignore:
Timestamp:
Jun 6, 2019 12:12:09 PM (5 years ago)
Author:
vboxsync
Message:

RTMemPageAllocExTag/win: Shut up VirtualLock assertion for now.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/r3/win/alloc-win.cpp

    r78334 r79020  
    111111    if (fFlags & RTMEMPAGEALLOC_F_ADVISE_LOCKED)
    112112    {
     113        /** @todo check why we get ERROR_WORKING_SET_QUOTA here. */
    113114        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()));
    115116        NOREF(fOkay);
    116117    }
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette