Rev 3987 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 3987 | Rev 4194 | ||
|---|---|---|---|
| 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 | #define CONFIG_TASK_NAME_BUFLEN 32 |
| 46 | 45 | ||
| 47 | typedef struct { |
46 | typedef struct { |
| 48 | uintptr_t addr; |
47 | uintptr_t addr; |
| 49 | size_t size; |
48 | size_t size; |
| 50 | char name[CONFIG_TASK_NAME_BUFLEN]; |
49 | char name[CONFIG_TASK_NAME_BUFLEN]; |