VirtualBox

Changeset 18645 in vbox for trunk/src/VBox/Devices/Serial


Ignore:
Timestamp:
Apr 2, 2009 3:38:31 PM (16 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
45568
Message:

VMSetRuntimeError[V] refactoring: fFatal -> fFlags, may return informational status codes.

File:
1 edited

Legend:

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

    r16527 r18645  
    974974        {
    975975ioctl_error:
    976             PDMDrvHlpVMSetRuntimeError(pDrvIns, false, "DrvHostSerialFail",
     976            PDMDrvHlpVMSetRuntimeError(pDrvIns, 0 /*fFlags*/, "DrvHostSerialFail",
    977977                                       N_("Ioctl failed for serial host device '%s' (%Rrc). The device will not work properly"),
    978978                                       pThis->pszDevicePath, RTErrConvertFromErrno(errno));
     
    990990        if (rc < 0)
    991991        {
    992             PDMDrvHlpVMSetRuntimeError(pDrvIns, false, "DrvHostSerialFail",
     992            PDMDrvHlpVMSetRuntimeError(pDrvIns, 0 /*fFlags*/, "DrvHostSerialFail",
    993993                                       N_("Ioctl failed for serial host device '%s' (%Rrc). The device will not work properly"),
    994994                                       pThis->pszDevicePath, RTErrConvertFromErrno(errno));
     
    10921092
    10931093ioctl_error:
    1094     PDMDrvHlpVMSetRuntimeError(pDrvIns, false, "DrvHostSerialFail",
     1094    PDMDrvHlpVMSetRuntimeError(pDrvIns, 0 /*fFlags*/, "DrvHostSerialFail",
    10951095                                N_("Ioctl failed for serial host device '%s' (%Rrc). The device will not work properly"),
    10961096                                pThis->pszDevicePath, RTErrConvertFromErrno(errno));
     
    11121112    rc = RTThreadPoke(pThread->Thread);
    11131113    if (RT_FAILURE(rc))
    1114         PDMDrvHlpVMSetRuntimeError(pDrvIns, false, "DrvHostSerialFail",
     1114        PDMDrvHlpVMSetRuntimeError(pDrvIns, 0 /*fFlags*/, "DrvHostSerialFail",
    11151115                                    N_("Suspending serial monitor thread failed for serial device '%s' (%Rrc). The shutdown may take longer than expected"),
    11161116                                    pThis->pszDevicePath, RTErrConvertFromErrno(rc));
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