Changeset 66148 in vbox for trunk/include/VBox
- Timestamp:
- Mar 16, 2017 10:23:37 PM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 114054
- Location:
- trunk/include/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/err.mac
r62174 r66148 180 180 %define VERR_PGM_INVALID_LARGE_PAGE_RANGE (-1645) 181 181 %define VERR_PGM_PHYS_PAGE_BALLOONED (-1646) 182 %define VERR_PGM_HANDLER_IPE_1 (-1647) 182 183 %define VERR_PGM_MAP_MMIO2_ALIAS_MMIO (-1651) 183 184 %define VERR_PGM_MAPPINGS_DISABLED (-1652) … … 214 215 %define VERR_PGM_TOO_MANY_MMIO2_RANGES (-1683) 215 216 %define VERR_PGM_PHYS_PAGE_MAP_MMIO2_IPE (-1684) 217 %define VERR_PGM_PHYS_MMIO_EX_IPE (-1685) 216 218 %define VERR_MM_RAM_CONFLICT (-1700) 217 219 %define VERR_MM_HYPER_NO_MEMORY (-1701) … … 628 630 %define VERR_VGA_INVALID_CUSTOM_MODE (-3500) 629 631 %define VINF_VGA_RESIZE_IN_PROGRESS (3501) 632 %define VERR_VGA_UNEXPECTED_PCI_REGION_LOAD_CHANGE (-3502) 630 633 %define VERR_INTNET_FLT_IF_NOT_FOUND (-3600) 631 634 %define VERR_INTNET_FLT_IF_BUSY (-3601) … … 1028 1031 %define VERR_AUDIO_NO_FREE_OUTPUT_STREAMS (-6602) 1029 1032 %define VERR_AUDIO_STREAM_PENDING_DISABLE (-6603) 1033 %define VINF_AUDIO_MORE_DATA_AVAILABLE (6604) 1030 1034 %define VERR_APIC_INTR_NOT_PENDING (-6700) 1031 1035 %define VERR_APIC_INTR_MASKED_BY_TPR (-6701) -
trunk/include/VBox/param.mac
r39310 r66148 1 1 %ifndef ___VBox_param_h 2 2 %define ___VBox_param_h 3 %define VBOX_MAX_ALLOC_PAGE_COUNT (256U * _1M / PAGE_SIZE) 3 %if ARCH_BITS == 64 4 %define VBOX_MAX_ALLOC_PAGE_COUNT (_512M / PAGE_SIZE) 5 %else 6 %define VBOX_MAX_ALLOC_PAGE_COUNT (_256M / PAGE_SIZE) 7 %endif 4 8 %define MM_HYPER_AREA_ADDRESS 0xa0000000 5 9 %define MM_HYPER_AREA_MAX_SIZE (40U * _1M) … … 18 22 %endif 19 23 %define MM_RAM_HOLE_SIZE_DEFAULT (512U * _1M) 24 %if HC_ARCH_BITS == 64 25 %define MM_MMIO_64_MAX _1T 26 %else 27 %define MM_MMIO_64_MAX (_1G64 * 16) 28 %endif 29 %define MM_MMIO_32_MAX _2G 20 30 %define PGM_HANDY_PAGES 128 21 31 %define PGM_HANDY_PAGES_SET_FF 32
Note:
See TracChangeset
for help on using the changeset viewer.