Rev 3919 | Rev 4194 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 3919 | Rev 3987 | ||
---|---|---|---|
Line 38... | Line 38... | ||
38 | #include <arch/types.h> |
38 | #include <arch/types.h> |
39 | #include <arch/mm/page.h> |
39 | #include <arch/mm/page.h> |
40 | 40 | ||
41 | #define STACK_SIZE PAGE_SIZE |
41 | #define STACK_SIZE PAGE_SIZE |
42 | 42 | ||
43 | #define CONFIG_INIT_TASKS 32 |
43 | #define CONFIG_INIT_TASKS 32 |
- | 44 | ||
- | 45 | #define CONFIG_TASK_NAME_BUFLEN 32 |
|
44 | 46 | ||
45 | typedef struct { |
47 | typedef struct { |
46 | uintptr_t addr; |
48 | uintptr_t addr; |
47 | size_t size; |
49 | size_t size; |
- | 50 | char name[CONFIG_TASK_NAME_BUFLEN]; |
|
48 | } init_task_t; |
51 | } init_task_t; |
49 | 52 | ||
50 | typedef struct { |
53 | typedef struct { |
51 | count_t cnt; |
54 | count_t cnt; |
52 | init_task_t tasks[CONFIG_INIT_TASKS]; |
55 | init_task_t tasks[CONFIG_INIT_TASKS]; |