VirtualBox

Changeset 53767 in vbox


Ignore:
Timestamp:
Jan 9, 2015 10:52:21 PM (10 years ago)
Author:
vboxsync
Message:

s/VERR_CPU_HOTPLUG_NOT_MONITORED_BY_GUEST/VERR_VMMDEV_CPU_HOTPLUG_NOT_MONITORED_BY_GUEST/g - The VERR_CPU_ prefix has been claimed by IPRT.

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/VBox/err.h

    r53466 r53767  
    21672167/** @} */
    21682168
    2169 /** @name VBox CPU hotplug Status codes
     2169/** @name VBox VMMDev Status codes
    21702170 * @{
    21712171 */
    21722172/** CPU hotplug events from VMMDev are not monitored by the guest. */
    2173 #define VERR_CPU_HOTPLUG_NOT_MONITORED_BY_GUEST    (-4700)
     2173#define VERR_VMMDEV_CPU_HOTPLUG_NOT_MONITORED_BY_GUEST      (-4700)
    21742174/** @} */
    21752175
  • trunk/include/VBox/err.mac

    r53626 r53767  
    807807%define VERR_COM_OBJECT_IN_USE    (VERR_COM_VBOX_LOWEST + 12)
    808808%define VERR_COM_DONT_CALL_AGAIN    (VERR_COM_VBOX_LOWEST + 13)
    809 %define VERR_CPU_HOTPLUG_NOT_MONITORED_BY_GUEST    (-4700)
     809%define VERR_VMMDEV_CPU_HOTPLUG_NOT_MONITORED_BY_GUEST    (-4700)
    810810%define VINF_AIO_TASK_PENDING    4800
    811811%define VERR_VSCSI_LUN_TYPE_NOT_SUPPORTED    (-4900)
  • trunk/src/VBox/Devices/VMMDev/VMMDev.cpp

    r53073 r53767  
    33223322    }
    33233323    else
    3324         rc = VERR_CPU_HOTPLUG_NOT_MONITORED_BY_GUEST;
     3324        rc = VERR_VMMDEV_CPU_HOTPLUG_NOT_MONITORED_BY_GUEST;
    33253325
    33263326    PDMCritSectLeave(&pThis->CritSect);
     
    33483348    }
    33493349    else
    3350         rc = VERR_CPU_HOTPLUG_NOT_MONITORED_BY_GUEST;
     3350        rc = VERR_VMMDEV_CPU_HOTPLUG_NOT_MONITORED_BY_GUEST;
    33513351
    33523352    PDMCritSectLeave(&pThis->CritSect);
  • trunk/src/VBox/Main/src-client/ConsoleImpl.cpp

    r53760 r53767  
    23552355            } while (cTries-- > 0);
    23562356        }
    2357         else if (vrc == VERR_CPU_HOTPLUG_NOT_MONITORED_BY_GUEST)
     2357        else if (vrc == VERR_VMMDEV_CPU_HOTPLUG_NOT_MONITORED_BY_GUEST)
    23582358        {
    23592359            /* Query one time. It is possible that the user ejected the CPU. */
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