VirtualBox

Changeset 12892 in vbox for trunk/src/VBox/Devices


Ignore:
Timestamp:
Oct 2, 2008 7:22:55 AM (17 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
37295
Message:

AssertMsgRC

Location:
trunk/src/VBox/Devices
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/Serial/DrvHostSerial.cpp

    r12384 r12892  
    11071107    /* Open again to make use after suspend possible again. */
    11081108    rc = RTFileOpen(&pData->DeviceFile, pData->pszDevicePath, RTFILE_O_OPEN | RTFILE_O_READWRITE);
    1109     AssertMsg(RT_SUCCESS(rc), ("Opening device file again failed rc=%Vrc\n", rc));
     1109    AssertMsgRC(rc, ("Opening device file again failed rc=%Vrc\n", rc));
    11101110
    11111111    if (RT_FAILURE(rc))
  • trunk/src/VBox/Devices/Storage/DrvVD.cpp

    r12637 r12892  
    888888        {
    889889            rc = RTCacheCreate(&pThis->pCache, 0, sizeof(DRVVDASYNCTASK), RTOBJCACHE_PROTECT_INSERT);
    890             AssertMsg(RT_SUCCESS(rc), ("Failed to create cache rc=%Rrc\n", rc));
     890            AssertMsgRC(rc, ("Failed to create cache rc=%Rrc\n", rc));
    891891        }
    892892    }
  • trunk/src/VBox/Devices/Storage/VmdkHDDCore.cpp

    r12641 r12892  
    50845084                                                                NULL, pvUser,
    50855085                                                                NULL /* Nothing required after read. */);
    5086         AssertMsg(RT_SUCCESS(rc), ("Failed to enqueue tasks rc=%Rrc\n", rc));
     5086        AssertMsgRC(rc, ("Failed to enqueue tasks rc=%Rrc\n", rc));
    50875087    }
    50885088
     
    52205220                                                                NULL, pvUser,
    52215221                                                                NULL /* Nothing required after read. */);
    5222         AssertMsg(RT_SUCCESS(rc), ("Failed to enqueue tasks rc=%Rrc\n", rc));
     5222        AssertMsgRC(rc, ("Failed to enqueue tasks rc=%Rrc\n", rc));
    52235223    }
    52245224
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