Changeset 40069 in vbox for trunk/include
- Timestamp:
- Feb 10, 2012 6:05:02 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 76203
- Location:
- trunk/include
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/err.mac
r39405 r40069 170 170 %define VERR_PGM_INVALID_LARGE_PAGE_RANGE (-1645) 171 171 %define VERR_PGM_PHYS_PAGE_BALLOONED (-1646) 172 %define VINF_PGM_SHARED_MODULE_ALREADY_REGISTERED (1647)173 %define VERR_PGM_SHARED_MODULE_NOT_FOUND (-1648)174 %define VINF_PGM_SHARED_MODULE_COLLISION (1649)175 %define VERR_PGM_SHARED_MODULE_REGISTRATION_INCONSISTENCY (-1650)176 172 %define VERR_PGM_MAP_MMIO2_ALIAS_MMIO (-1651) 177 173 %define VERR_PGM_MAPPINGS_DISABLED (-1652) … … 495 491 %define VERR_PDM_BAD_PCI_CONFIG (-2887) 496 492 %define VERR_PDM_DEV_IPE_1 (-2888) 493 %define VERR_PDM_MISCONFIGURED_DRV_TRANSFORMATION (-2889) 494 %define VERR_PDM_CANNOT_TRANSFORM_REMOVED_DRIVER (-2890) 497 495 %define VERR_HGCM_SERVICE_NOT_FOUND (-2900) 498 496 %define VINF_HGCM_CLIENT_REJECTED 2901 … … 552 550 %define VERR_VD_DISCARD_ALIGNMENT_NOT_MET (-3277) 553 551 %define VERR_VD_DISCARD_NOT_SUPPORTED (-3278) 552 %define VERR_VD_IMAGE_CORRUPTED (-3279) 553 %define VERR_VD_IMAGE_REPAIR_NOT_SUPPORTED (-3280) 554 %define VERR_VD_IMAGE_REPAIR_IMPOSSIBLE (-3281) 554 555 %define VERR_VBGL_NOT_INITIALIZED (-3300) 555 556 %define VERR_VBGL_INVALID_ADDR (-3301) … … 618 619 %define VERR_GMM_ALLOC_PAGES_IPE (-3820) 619 620 %define VERR_GMM_ACTUAL_PAGES_IPE (-3821) 621 %define VERR_GMM_MODULE_NAME_TOO_LONG (-3822) 622 %define VERR_GMM_MODULE_VERSION_TOO_LONG (-3823) 623 %define VERR_GMM_TOO_MANY_REGIONS (-3824) 624 %define VERR_GMM_TOO_MANY_PER_VM_MODULES (-3825) 625 %define VERR_GMM_TOO_MANY_GLOBAL_MODULES (-3826) 626 %define VINF_GMM_SHARED_MODULE_ALREADY_REGISTERED (3827) 627 %define VERR_GMM_SHARED_MODULE_ADDRESS_CLASH (-3828) 628 %define VERR_GMM_SHARED_MODULE_NOT_FOUND (-3829) 629 %define VERR_GMM_BAD_SHARED_MODULE_SIZE (-3830) 630 %define VERR_GMM_SHARED_MODULE_BAD_REGIONS_SIZE (-3831) 620 631 %define VERR_GVM_TOO_MANY_VMS (-3900) 621 632 %define VINF_GVM_NOT_BLOCKED 3901 … … 705 716 %define VERR_GVMM_IPE_1 (-5203) 706 717 %define VERR_GVMM_IPE_2 (-5204) 718 %define VERR_IEM_INSTR_NOT_IMPLEMENTED (-5300) 719 %define VERR_IEM_ASPECT_NOT_IMPLEMENTED (-5391) 720 %define VERR_IEM_IPE_1 (-5392) 721 %define VERR_IEM_IPE_2 (-5393) 707 722 %define VERR_EXTPACK_UNSUPPORTED_HOST_UNINSTALL (-6000) 708 723 %define VERR_EXTPACK_VBOX_VERSION_MISMATCH (-6001) -
trunk/include/iprt/err.mac
r39402 r40069 117 117 %define VERR_MISSING (-99) 118 118 %define VERR_UNEXPECTED_EXCEPTION (-22400) 119 %define VERR_BUFFER_UNDERFLOW (-22401) 120 %define VINF_BUFFER_UNDERFLOW 22401 121 %define VERR_UNEVEN_INPUT (-22402) 119 122 %define VERR_FILE_IO_ERROR (-100) 120 123 %define VERR_OPEN_FAILED (-101) … … 202 205 %define VERR_PIPE_NOT_CONNECTED (-305) 203 206 %define VERR_MORE_DATA (-306) 207 %define VERR_PIPE_NOT_READ (-307) 208 %define VERR_PIPE_NOT_WRITE (-308) 204 209 %define VERR_SEM_ERROR (-350) 205 210 %define VERR_TOO_MANY_SEMAPHORES (-351) … … 391 396 %define VERR_MANIFEST_DIGEST_MISMATCH (-902) 392 397 %define VERR_MANIFEST_FILE_MISMATCH (-903) 398 %define VERR_MANIFEST_ATTR_NOT_FOUND (-904) 399 %define VERR_MANIFEST_ATTR_TYPE_MISMATCH (-905) 400 %define VERR_MANIFEST_ATTR_TYPE_NOT_FOUND (-906) 393 401 %define VERR_TAR_CHKSUM_MISMATCH (-925) 394 402 %define VERR_TAR_END_OF_FILE (-926) … … 439 447 %define VERR_DVM_MAP_NO_VOLUME (-22201) 440 448 %define VERR_LOG_REVISION_MISMATCH (-22300) 449 %define VERR_SYS_CANNOT_POWER_OFF (-22400) 450 %define VINF_SYS_MAY_POWER_OFF (22401) 451 %define VERR_SYS_SHUTDOWN_FAILED (-22402) 452 %define VERR_FILESYSTEM_CORRUPT (-22500) -
trunk/include/iprt/x86.h
r37955 r40069 2100 2100 /** FPU busy. */ 2101 2101 #define X86_FSW_B RT_BIT(15) 2102 /** @} */ 2103 2104 2105 /** @name FPU control word flags. 2106 * @{ */ 2107 /** Exception Mask: Invalid operation. */ 2108 #define X86_FCW_IM RT_BIT(0) 2109 /** Exception Mask: Denormalized operand. */ 2110 #define X86_FCW_DM RT_BIT(1) 2111 /** Exception Mask: Zero divide. */ 2112 #define X86_FCW_ZM RT_BIT(2) 2113 /** Exception Mask: Overflow. */ 2114 #define X86_FCW_OM RT_BIT(3) 2115 /** Exception Mask: Underflow. */ 2116 #define X86_FCW_UM RT_BIT(4) 2117 /** Exception Mask: Precision. */ 2118 #define X86_FCW_PM RT_BIT(5) 2119 /** Precision control mask. */ 2120 #define X86_FCW_PC_MASK UINT16_C(0x0300) 2121 /** Precision control: 24-bit. */ 2122 #define X86_FCW_PC_24 UINT16_C(0x0000) 2123 /** Precision control: Reserved. */ 2124 #define X86_FCW_PC_RSVD UINT16_C(0x0100) 2125 /** Precision control: 53-bit. */ 2126 #define X86_FCW_PC_53 UINT16_C(0x0200) 2127 /** Precision control: 64-bit. */ 2128 #define X86_FCW_PC_64 UINT16_C(0x0300) 2129 /** Rounding control mask. */ 2130 #define X86_FCW_RC_MASK UINT16_C(0x0c00) 2131 /** Rounding control: To nearest. */ 2132 #define X86_FCW_RC_NEAREST UINT16_C(0x0000) 2133 /** Rounding control: Down. */ 2134 #define X86_FCW_RC_DOWN UINT16_C(0x0400) 2135 /** Rounding control: Up. */ 2136 #define X86_FCW_RC_UP UINT16_C(0x0800) 2137 /** Rounding control: Towards zero. */ 2138 #define X86_FCW_RC_ZERO UINT16_C(0x0c00) 2102 2139 /** @} */ 2103 2140 -
trunk/include/iprt/x86.mac
r37968 r40069 474 474 %define X86_FSW_C3 RT_BIT(14) 475 475 %define X86_FSW_B RT_BIT(15) 476 %define X86_FCW_IM RT_BIT(0) 477 %define X86_FCW_DM RT_BIT(1) 478 %define X86_FCW_ZM RT_BIT(2) 479 %define X86_FCW_OM RT_BIT(3) 480 %define X86_FCW_UM RT_BIT(4) 481 %define X86_FCW_PM RT_BIT(5) 482 %define X86_FCW_PC_MASK 0x0300 483 %define X86_FCW_PC_24 0x0000 484 %define X86_FCW_PC_RSVD 0x0100 485 %define X86_FCW_PC_53 0x0200 486 %define X86_FCW_PC_64 0x0300 487 %define X86_FCW_RC_MASK 0x0c00 488 %define X86_FCW_RC_NEAREST 0x0000 489 %define X86_FCW_RC_DOWN 0x0400 490 %define X86_FCW_RC_UP 0x0800 491 %define X86_FCW_RC_ZERO 0x0c00 476 492 %if HC_ARCH_BITS == 64 477 493 %else
Note:
See TracChangeset
for help on using the changeset viewer.