Changeset 14645 in vbox for trunk/include/VBox
- Timestamp:
- Nov 26, 2008 2:09:41 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/param.h
r11177 r14645 38 38 */ 39 39 40 /** The maximum number of pages that can be allocated and mapped 41 * by various MM, PGM and SUP APIs. */ 42 #define VBOX_MAX_ALLOC_PAGE_COUNT (128 * _1M / PAGE_SIZE) 43 40 44 41 45 /** @defgroup grp_vbox_param_mm Memory Monitor Parameters … … 46 50 /** Initial address of Hypervisor Memory Area. 47 51 * MUST BE PAGE TABLE ALIGNED! */ 48 #define MM_HYPER_AREA_ADDRESS 0xa000000052 #define MM_HYPER_AREA_ADDRESS UINT32_C(0xa0000000) 49 53 50 54 /** The max size of the hypervisor memory area. */ 51 #define MM_HYPER_AREA_MAX_SIZE (20 * _1M)55 #define MM_HYPER_AREA_MAX_SIZE (20 * _1M) 52 56 53 57 /** Maximum number of bytes we can dynamically map into the hypervisor region. 54 58 * This must be a power of 2 number of pages! 55 59 */ 56 #define MM_HYPER_DYNAMIC_SIZE (8 * PAGE_SIZE)60 #define MM_HYPER_DYNAMIC_SIZE (8 * PAGE_SIZE) 57 61 58 62 /** @} */ … … 65 69 66 70 /** VMM stack size. */ 67 #define VMM_STACK_SIZE 819271 #define VMM_STACK_SIZE 8192 68 72 69 73 /** @} */
Note:
See TracChangeset
for help on using the changeset viewer.