Changeset 3b3faf51 in mainline
- Timestamp:
- 2016-12-26T20:02:04Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ba1ea40
- Parents:
- a79b42a
- Location:
- kernel/generic
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/config.h
ra79b42a r3b3faf51 43 43 44 44 #define STACK_SIZE_USER (1 * 1024 * 1024) 45 46 #define CONFIG_BOOT_ARGUMENTS_BUFLEN 256 45 47 46 48 #define CONFIG_INIT_TASKS 32 … … 102 104 103 105 extern config_t config; 106 extern char bargs[]; 104 107 extern init_t init; 105 108 extern ballocs_t ballocs; -
kernel/generic/src/main/main.c
ra79b42a r3b3faf51 117 117 }; 118 118 119 /** Boot arguments. */ 120 char bargs[CONFIG_BOOT_ARGUMENTS_BUFLEN] = {}; 121 119 122 /** Initial user-space tasks */ 120 123 init_t init = { … … 276 279 thread_init(); 277 280 futex_init(); 278 281 282 sysinfo_set_item_data("boot_args", NULL, bargs, str_size(bargs) + 1); 283 279 284 if (init.cnt > 0) { 280 285 size_t i;
Note:
See TracChangeset
for help on using the changeset viewer.