Changeset 03362fbd in mainline for kernel/generic/include/config.h
- Timestamp:
- 2013-02-09T23:14:45Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/fix-logger-deadlock, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 22dfd38
- Parents:
- b5d2e57 (diff), 005b765 (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
-
kernel/generic/include/config.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/config.h
rb5d2e57 r03362fbd 45 45 #define STACK_SIZE ((1 << STACK_FRAMES) << PAGE_WIDTH) 46 46 47 #define STACK_SIZE_USER (1 * 1024 * 1024) 48 47 49 #define CONFIG_INIT_TASKS 32 48 50 #define CONFIG_TASK_NAME_BUFLEN 32 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) 49 58 50 59 #ifndef __ASM__ … … 56 65 size_t size; 57 66 char name[CONFIG_TASK_NAME_BUFLEN]; 67 char arguments[CONFIG_TASK_ARGUMENTS_BUFLEN]; 58 68 } init_task_t; 59 69
Note:
See TracChangeset
for help on using the changeset viewer.
