Changeset 53767 in vbox
- Timestamp:
- Jan 9, 2015 10:52:21 PM (10 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
-
include/VBox/err.h (modified) (1 diff)
-
include/VBox/err.mac (modified) (1 diff)
-
src/VBox/Devices/VMMDev/VMMDev.cpp (modified) (2 diffs)
-
src/VBox/Main/src-client/ConsoleImpl.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/err.h
r53466 r53767 2167 2167 /** @} */ 2168 2168 2169 /** @name VBox CPU hotplugStatus codes2169 /** @name VBox VMMDev Status codes 2170 2170 * @{ 2171 2171 */ 2172 2172 /** 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) 2174 2174 /** @} */ 2175 2175 -
trunk/include/VBox/err.mac
r53626 r53767 807 807 %define VERR_COM_OBJECT_IN_USE (VERR_COM_VBOX_LOWEST + 12) 808 808 %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) 810 810 %define VINF_AIO_TASK_PENDING 4800 811 811 %define VERR_VSCSI_LUN_TYPE_NOT_SUPPORTED (-4900) -
trunk/src/VBox/Devices/VMMDev/VMMDev.cpp
r53073 r53767 3322 3322 } 3323 3323 else 3324 rc = VERR_ CPU_HOTPLUG_NOT_MONITORED_BY_GUEST;3324 rc = VERR_VMMDEV_CPU_HOTPLUG_NOT_MONITORED_BY_GUEST; 3325 3325 3326 3326 PDMCritSectLeave(&pThis->CritSect); … … 3348 3348 } 3349 3349 else 3350 rc = VERR_ CPU_HOTPLUG_NOT_MONITORED_BY_GUEST;3350 rc = VERR_VMMDEV_CPU_HOTPLUG_NOT_MONITORED_BY_GUEST; 3351 3351 3352 3352 PDMCritSectLeave(&pThis->CritSect); -
trunk/src/VBox/Main/src-client/ConsoleImpl.cpp
r53760 r53767 2355 2355 } while (cTries-- > 0); 2356 2356 } 2357 else if (vrc == VERR_ CPU_HOTPLUG_NOT_MONITORED_BY_GUEST)2357 else if (vrc == VERR_VMMDEV_CPU_HOTPLUG_NOT_MONITORED_BY_GUEST) 2358 2358 { 2359 2359 /* Query one time. It is possible that the user ejected the CPU. */
Note:
See TracChangeset
for help on using the changeset viewer.

