VirtualBox

Changeset 47072 in vbox


Ignore:
Timestamp:
Jul 10, 2013 12:04:05 PM (12 years ago)
Author:
vboxsync
Message:

VMM/HMSVMR0: Use a different error code for unrecognized vs. unexpected exit.

Location:
trunk
Files:
2 edited

Legend:

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

    r46655 r47072  
    19371937/** Unable to start VM execution due to an invalid guest state. */
    19381938#define VERR_SVM_INVALID_GUEST_STATE                (-4059)
     1939/** Unknown or unrecognized SVM exit.  */
     1940#define VERR_SVM_UNKNOWN_EXIT                       (-4060)
    19391941/** @} */
    19401942
  • trunk/src/VBox/VMM/VMMR0/HMSVMR0.cpp

    r47056 r47072  
    30363036                default:
    30373037                {
    3038                     AssertMsgFailed(("hmR0SvmHandleExit: Unexpected exit code %#x\n", u32ExitCode));
    3039                     return VERR_SVM_UNEXPECTED_EXIT;
     3038                    AssertMsgFailed(("hmR0SvmHandleExit: Unknown exit code %#x\n", u32ExitCode));
     3039                    return VERR_SVM_UNKNOWN_EXIT;
    30403040                }
    30413041            }
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