Changes in kernel/generic/include/config.h [34ae0a5:fa24efa] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/config.h
r34ae0a5 rfa24efa 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 50 47 #define CONFIG_TASK_NAME_BUFLEN 32 51 48 #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 49 59 50 #ifndef __ASM__ … … 97 88 /** Size of initial stack. */ 98 89 size_t stack_size; 99 90 100 91 bool identity_configured; 101 92 /** Base address of the kernel identity mapped memory. */ … … 103 94 /** Size of the kernel identity mapped memory. */ 104 95 size_t identity_size; 105 106 bool non_identity_configured; 107 96 97 bool non_identity_configured; 98 108 99 /** End of physical memory. */ 109 100 uint64_t physmem_end;
Note:
See TracChangeset
for help on using the changeset viewer.