VirtualBox

Changeset 10533 in vbox for trunk/src/VBox


Ignore:
Timestamp:
Jul 11, 2008 2:50:25 PM (16 years ago)
Author:
vboxsync
Message:

s/VBOX_\(SUCCESS|FAILURE\)/RT_\1/g

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/Network/SrvIntNetR0.cpp

    r10530 r10533  
    472472    LogFlow(("intnetIfSend: pIf=%p:{.hIf=%RX32}\n", pIf, pIf->hIf));
    473473    int rc = intnetRingWriteFrame(pIf->pIntBuf, &pIf->pIntBuf->Recv, pvFrame, cbFrame);
    474     if (VBOX_SUCCESS(rc))
     474    if (RT_SUCCESS(rc))
    475475    {
    476476        pIf->cYields = 0;
     
    493493            RTThreadYield();
    494494            rc = intnetRingWriteFrame(pIf->pIntBuf, &pIf->pIntBuf->Recv, pvFrame, cbFrame);
    495             if (VBOX_SUCCESS(rc))
     495            if (RT_SUCCESS(rc))
    496496            {
    497497                STAM_REL_COUNTER_INC(&pIf->pIntBuf->cStatYieldsOk);
     
    627627
    628628    int rc = RTSemFastMutexRequest(pIf->pNetwork->FastMutex);
    629     if (VBOX_FAILURE(rc))
     629    if (RT_FAILURE(rc))
    630630        return rc;
    631631
     
    701701     */
    702702    int rc = RTSemFastMutexRequest(pIf->pNetwork->FastMutex);
    703     if (VBOX_FAILURE(rc))
     703    if (RT_FAILURE(rc))
    704704        return rc;
    705705
     
    752752     */
    753753    int rc = RTSemFastMutexRequest(pIf->pNetwork->FastMutex);
    754     if (VBOX_FAILURE(rc))
     754    if (RT_FAILURE(rc))
    755755        return rc;
    756756
     
    789789     */
    790790    int rc = RTSemFastMutexRequest(pIf->pNetwork->FastMutex);
    791     if (VBOX_FAILURE(rc))
     791    if (RT_FAILURE(rc))
    792792        return rc;
    793793
     
    11131113    //pIf->fMacSet = 0;
    11141114    int rc = RTSemEventCreate(&pIf->Event);
    1115     if (VBOX_SUCCESS(rc))
     1115    if (RT_SUCCESS(rc))
    11161116    {
    11171117        pIf->pSession = pSession;
     
    11251125        const unsigned cbBuf = RT_ALIGN(sizeof(*pIf->pIntBuf), sizeof(INTNETHDR)) + cbRecv + cbSend;
    11261126        rc = SUPR0MemAlloc(pIf->pSession, cbBuf, (PRTR0PTR)&pIf->pIntBufDefault, (PRTR3PTR)&pIf->pIntBufDefaultR3);
    1127         if (VBOX_SUCCESS(rc))
     1127        if (RT_SUCCESS(rc))
    11281128        {
    11291129            pIf->pIntBuf = pIf->pIntBufDefault;
     
    11471147             */
    11481148            rc = RTSemFastMutexRequest(pNetwork->FastMutex);
    1149             if (VBOX_SUCCESS(rc))
     1149            if (RT_SUCCESS(rc))
    11501150            {
    11511151                pIf->pNext = pNetwork->pIFs;
     
    13351335                    RTSpinlockRelease(pIntNet->Spinlock, &Tmp);
    13361336
    1337                     if (VBOX_SUCCESS(rc))
     1337                    if (RT_SUCCESS(rc))
    13381338                    {
    13391339                        if (!(pCur->fFlags & INTNET_OPEN_FLAGS_PUBLIC))
    13401340                            rc = SUPR0ObjVerifyAccess(pCur->pvObj, pSession, pCur->szName);
    1341                         if (VBOX_SUCCESS(rc))
     1341                        if (RT_SUCCESS(rc))
    13421342                            *ppNetwork = pCur;
    13431343                        else
     
    14221422        return VERR_NO_MEMORY;
    14231423    int rc = RTSemFastMutexCreate(&pNew->FastMutex);
    1424     if (VBOX_SUCCESS(rc))
     1424    if (RT_SUCCESS(rc))
    14251425    {
    14261426        //pNew->pIFs = NULL;
     
    14611461                 */
    14621462                rc = SUPR0ObjVerifyAccess(pNew->pvObj, pSession, pNew->szName);
    1463                 if (VBOX_SUCCESS(rc))
     1463                if (RT_SUCCESS(rc))
    14641464                {
    14651465                    *ppNetwork = pNew;
     
    15511551     */
    15521552    int rc = RTSemFastMutexRequest(pIntNet->FastMutex);
    1553     if (VBOX_FAILURE(rc))
     1553    if (RT_FAILURE(rc))
    15541554        return rc;
    15551555
     
    15611561    if (rc == VERR_NOT_FOUND)
    15621562        rc = intnetCreateNetwork(pIntNet, pSession, pszNetwork, enmTrunkType, pszTrunk, fFlags, &pNetwork);
    1563     if (VBOX_SUCCESS(rc))
     1563    if (RT_SUCCESS(rc))
    15641564    {
    15651565        /*
     
    15691569         */
    15701570        rc = intnetNetworkCreateIf(pNetwork, pSession, cbSend, cbRecv, phIf);
    1571         if (VBOX_FAILURE(rc))
     1571        if (RT_FAILURE(rc))
    15721572            intnetNetworkClose(pNetwork, pSession);
    15731573    }
     
    16511651
    16521652        rc = RTSemFastMutexCreate(&pIntNet->FastMutex);
    1653         if (VBOX_SUCCESS(rc))
     1653        if (RT_SUCCESS(rc))
    16541654        {
    16551655            rc = RTSpinlockCreate(&pIntNet->Spinlock);
    1656             if (VBOX_SUCCESS(rc))
     1656            if (RT_SUCCESS(rc))
    16571657            {
    16581658                *ppIntNet = pIntNet;
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