Changes in kernel/generic/include/config.h [3b3faf51:34ae0a5] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/config.h
r3b3faf51 r34ae0a5 37 37 38 38 #include <arch/mm/page.h> 39 #include <macros.h>40 39 41 #define STACK_FRAMES 2 42 #define STACK_SIZE FRAMES2SIZE(STACK_FRAMES) 40 #define ONE_FRAME 0 41 #define TWO_FRAMES 1 42 #define FOUR_FRAMES 2 43 43 44 #define STACK_SIZE_USER (1 * 1024 * 1024) 44 #define STACK_FRAMES TWO_FRAMES 45 #define STACK_SIZE ((1 << STACK_FRAMES) << PAGE_WIDTH) 45 46 46 #define CONFIG_BOOT_ARGUMENTS_BUFLEN 25647 #define STACK_SIZE_USER (1 * 1024 * 1024) 47 48 48 49 #define CONFIG_INIT_TASKS 32 49 50 #define CONFIG_TASK_NAME_BUFLEN 32 50 51 #define CONFIG_TASK_ARGUMENTS_BUFLEN 64 52 53 /** 54 * Maximum buffer size allowed for IPC_M_DATA_WRITE and IPC_M_DATA_READ 55 * requests. 56 */ 57 #define DATA_XFER_LIMIT (64 * 1024) 51 58 52 59 #ifndef __ASM__ … … 90 97 /** Size of initial stack. */ 91 98 size_t stack_size; 92 99 93 100 bool identity_configured; 94 101 /** Base address of the kernel identity mapped memory. */ … … 96 103 /** Size of the kernel identity mapped memory. */ 97 104 size_t identity_size; 98 99 bool non_identity_configured; 100 105 106 bool non_identity_configured; 107 101 108 /** End of physical memory. */ 102 109 uint64_t physmem_end; … … 104 111 105 112 extern config_t config; 106 extern char bargs[];107 113 extern init_t init; 108 114 extern ballocs_t ballocs;
Note:
See TracChangeset
for help on using the changeset viewer.