VirtualBox

Changeset 49816 in vbox for trunk/src/VBox


Ignore:
Timestamp:
Dec 6, 2013 9:50:59 PM (11 years ago)
Author:
vboxsync
Message:

Try to fix solaris burn

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/USB/solaris/USBProxyDevice-solaris.cpp

    r49814 r49816  
    317317                     * Create wakeup pipe.
    318318                     */
    319                     rc = RTPipeCreate(&pDevLnx->hPipeWakeupR, &pDevLnx->hPipeWakeupW, 0);
     319                    rc = RTPipeCreate(&pDevSol->hPipeWakeupR, &pDevSol->hPipeWakeupW, 0);
    320320                    if (RT_SUCCESS(rc))
    321321                    {
     
    382382                                rc = VERR_OPEN_FAILED;
    383383                        }
    384                         RTPipeClose(pDevLnx->hPipeWakeupR);
    385                         RTPipeClose(pDevLnx->hPipeWakeupW);
     384                        RTPipeClose(pDevSol->hPipeWakeupR);
     385                        RTPipeClose(pDevSol->hPipeWakeupW);
    386386                    }
    387387
     
    446446    }
    447447
    448     RTPipeClose(pDevLnx->hPipeWakeupR);
    449     RTPipeClose(pDevLnx->hPipeWakeupW);
     448    RTPipeClose(pDevSol->hPipeWakeupR);
     449    RTPipeClose(pDevSol->hPipeWakeupW);
    450450
    451451    RTStrFree(pDevSol->pszDevicePath);
     
    727727            pfd[0].revents = 0;
    728728
    729             pfd[1].fd = RTPipeToNative(pDevSol->hWakeupPipeR);
     729            pfd[1].fd = RTPipeToNative(pDevSol->hPipeWakeupR);
    730730            pfd[1].events = POLLIN;
    731731            pfd[1].revents = 0;
    732732
    733             int rc = poll(&pfd, 2, cMilliesWait);
     733            int rc = poll(&pfd[0], 2, cMilliesWait);
    734734            if (rc > 0)
    735735            {
     
    746746                    uint8_t bRead;
    747747                    size_t cbIgnored = 0;
    748                     RTPipeRead(pDevLnx->hPipeWakeupR, &bRead, 1, &cbIgnored);
     748                    RTPipeRead(pDevSol->hPipeWakeupR, &bRead, 1, &cbIgnored);
    749749
    750750                    /*
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