VirtualBox

Ignore:
Timestamp:
Nov 4, 2008 10:52:12 PM (16 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
38807
Message:

VMM: VBOX_SUCCESS -> RT_SUCCESS, VBOX_FAILURE -> RT_FAILURE.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/MMPagePool.cpp

    r12989 r13816  
    6969    AssertReleaseReturn(sizeof(*pVM->mm.s.pPagePoolR3) + sizeof(*pVM->mm.s.pPagePoolLowR3) < PAGE_SIZE, VERR_INTERNAL_ERROR);
    7070    int rc = SUPPageAllocLocked(1, (void **)&pVM->mm.s.pPagePoolR3);
    71     if (VBOX_FAILURE(rc))
     71    if (RT_FAILURE(rc))
    7272        return rc;
    7373    memset(pVM->mm.s.pPagePoolR3, 0, PAGE_SIZE);
     
    238238                          MM_TAG_MM_PAGE,
    239239                          (void **)&pSub);
    240     if (VBOX_FAILURE(rc))
     240    if (RT_FAILURE(rc))
    241241        return NULL;
    242242
     
    249249         */
    250250        rc = SUPPageAlloc(cPages, &pSub->pvPages);
    251         if (VBOX_SUCCESS(rc))
     251        if (RT_SUCCESS(rc))
    252252        {
    253253            rc = SUPPageLock(pSub->pvPages, cPages, paPhysPages);
    254             if (VBOX_FAILURE(rc))
     254            if (RT_FAILURE(rc))
    255255            {
    256256                SUPPageFree(pSub->pvPages, cPages);
     
    262262    else
    263263        rc = SUPLowAlloc(cPages, &pSub->pvPages, NULL, paPhysPages);
    264     if (VBOX_SUCCESS(rc))
     264    if (RT_SUCCESS(rc))
    265265    {
    266266        /*
Note: See TracChangeset for help on using the changeset viewer.

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