Changeset 92258 in vbox for trunk/include/VBox/VMMDevTesting.h
- Timestamp:
- Nov 8, 2021 9:18:20 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/VMMDevTesting.h
r90503 r92258 142 142 143 143 /** @name Value units 144 * @note Same as RTTESTUNIT, see rules here for adding new units. 144 145 * @{ */ 145 146 #define VMMDEV_TESTING_UNIT_PCT UINT8_C(0x01) /**< Percentage. */ … … 170 171 #define VMMDEV_TESTING_UNIT_INSTRS_PER_SEC UINT8_C(0x1a) /**< Instructions per second. */ 171 172 #define VMMDEV_TESTING_UNIT_NONE UINT8_C(0x1b) /**< No unit. */ 173 #define VMMDEV_TESTING_UNIT_PP1K UINT8_C(0x1c) /**< Parts per thousand (10^-3). */ 174 #define VMMDEV_TESTING_UNIT_PP10K UINT8_C(0x1d) /**< Parts per ten thousand (10^-4). */ 175 #define VMMDEV_TESTING_UNIT_PPM UINT8_C(0x1e) /**< Parts per million (10^-6). */ 176 #define VMMDEV_TESTING_UNIT_PPB UINT8_C(0x1f) /**< Parts per billion (10^-9). */ 177 #define VMMDEV_TESTING_UNIT_TICKS UINT8_C(0x20) /**< CPU ticks. */ 178 #define VMMDEV_TESTING_UNIT_TICKS_PER_CALL UINT8_C(0x21) /**< CPU ticks per call. */ 179 #define VMMDEV_TESTING_UNIT_TICKS_PER_OCCURENCE UINT8_C(0x22) /**< CPU ticks per occurence. */ 180 #define VMMDEV_TESTING_UNIT_PAGES UINT8_C(0x23) /**< Page count. */ 181 #define VMMDEV_TESTING_UNIT_PAGES_PER_SEC UINT8_C(0x24) /**< Pages per second. */ 182 #define VMMDEV_TESTING_UNIT_TICKS_PER_PAGE UINT8_C(0x25) /**< CPU ticks per page. */ 183 #define VMMDEV_TESTING_UNIT_NS_PER_PAGE UINT8_C(0x26) /**< Nanoseconds per page. */ 172 184 /** @} */ 173 185
Note:
See TracChangeset
for help on using the changeset viewer.