Changeset 43746 in vbox for trunk/include/VBox
- Timestamp:
- Oct 25, 2012 4:35:37 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 81654
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/err.h
r43394 r43746 1906 1906 /** AMD-V CPU extension in-use. */ 1907 1907 #define VERR_SVM_IN_USE (-4054) 1908 /** Invalid pVMCB. */ 1909 #define VERR_SVM_INVALID_PVMCB (-4055) 1910 /** Unexpected SVM exit. */ 1911 #define VERR_SVM_UNEXPECTED_EXIT (-4056) 1912 /** Unexpected SVM exception exit. */ 1913 #define VERR_SVM_UNEXPECTED_XCPT_EXIT (-4057) 1914 /** Unexpected SVM patch type. */ 1915 #define VERR_SVM_UNEXPECTED_PATCH_TYPE (-4058) 1908 1916 /** @} */ 1909 1917 … … 1913 1921 */ 1914 1922 /** Unable to start VM execution. */ 1915 #define VERR_HM_UNKNOWN_CPU (-4100)1923 #define VERR_HM_UNKNOWN_CPU (-4100) 1916 1924 /** No CPUID support. */ 1917 #define VERR_HM_NO_CPUID (-4101)1925 #define VERR_HM_NO_CPUID (-4101) 1918 1926 /** Host is about to go into suspend mode. */ 1919 #define VERR_HM_SUSPEND_PENDING (-4102)1927 #define VERR_HM_SUSPEND_PENDING (-4102) 1920 1928 /** Conflicting CFGM values. */ 1921 #define VERR_HM_CONFIG_MISMATCH (-4103)1929 #define VERR_HM_CONFIG_MISMATCH (-4103) 1922 1930 /** Internal processing error in the HM init code. */ 1923 1931 #define VERR_HM_ALREADY_ENABLED_IPE (-4104) … … 1926 1934 /** No 32-bit to 64-bit switcher in place. */ 1927 1935 #define VERR_HM_NO_32_TO_64_SWITCHER (-4106) 1928 /** Invalid pVMCB. */1929 #define VERR_HMSVM_INVALID_PVMCB (-4107)1930 /** Unexpected SVM exit. */1931 #define VERR_HMSVM_UNEXPECTED_EXIT (-4108)1932 /** Unexpected SVM exception exit. */1933 #define VERR_HMSVM_UNEXPECTED_XCPT_EXIT (-4109)1934 /** Unexpected SVM patch type. */1935 #define VERR_HMSVM_UNEXPECTED_PATCH_TYPE (-4110)1936 1936 /** HMR0Leave was called on the wrong CPU. */ 1937 #define VERR_HM_WRONG_CPU_1 (-41 11)1937 #define VERR_HM_WRONG_CPU_1 (-4107) 1938 1938 /** Internal processing error \#1 in the HM code. */ 1939 #define VERR_HM_IPE_1 (-41 12)1939 #define VERR_HM_IPE_1 (-4108) 1940 1940 /** Internal processing error \#2 in the HM code. */ 1941 #define VERR_HM_IPE_2 (-41 13)1941 #define VERR_HM_IPE_2 (-4109) 1942 1942 /** Wrong 32/64-bit switcher. */ 1943 #define VERR_HM_WRONG_SWITCHER (-411 4)1943 #define VERR_HM_WRONG_SWITCHER (-4110) 1944 1944 /** Unknown I/O instruction. */ 1945 #define VERR_HM_UNKNOWN_IO_INSTRUCTION (-4115) 1945 #define VERR_HM_UNKNOWN_IO_INSTRUCTION (-4111) 1946 /** Unsupported CPU feature combination. */ 1947 #define VERR_HM_UNSUPPORTED_CPU_FEATURE_COMBO (-4112) 1946 1948 /** @} */ 1947 1949
Note:
See TracChangeset
for help on using the changeset viewer.