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