Changeset 99c2c69e in mainline for kernel/generic/include/config.h
- Timestamp:
- 2013-09-13T00:36:30Z (11 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 67fbd5e
- Parents:
- 7f84430 (diff), 11d41be5 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/config.h
r7f84430 r99c2c69e 37 37 38 38 #include <arch/mm/page.h> 39 #include <macros.h> 39 40 40 #define ONE_FRAME 0 41 #define TWO_FRAMES 1 42 #define FOUR_FRAMES 2 41 #define STACK_FRAMES 2 42 #define STACK_SIZE FRAMES2SIZE(STACK_FRAMES) 43 43 44 #define STACK_FRAMES TWO_FRAMES 45 #define STACK_SIZE ((1 << STACK_FRAMES) << PAGE_WIDTH) 46 47 #define STACK_SIZE_USER (1 * 1024 * 1024) 44 #define STACK_SIZE_USER (1 * 1024 * 1024) 48 45 49 46 #define CONFIG_INIT_TASKS 32 … … 97 94 /** Size of initial stack. */ 98 95 size_t stack_size; 99 96 100 97 bool identity_configured; 101 98 /** Base address of the kernel identity mapped memory. */ … … 103 100 /** Size of the kernel identity mapped memory. */ 104 101 size_t identity_size; 105 106 bool non_identity_configured; 107 102 103 bool non_identity_configured; 104 108 105 /** End of physical memory. */ 109 106 uint64_t physmem_end;
Note:
See TracChangeset
for help on using the changeset viewer.