Subversion Repositories HelenOS

Rev

Rev 3425 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3425 Rev 4377
Line 39... Line 39...
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
#define CONFIG_TASK_NAME_BUFLEN  32
44
 
45
 
45
typedef struct {
46
typedef struct {
46
    uintptr_t addr;
47
    uintptr_t addr;
47
    size_t size;
48
    size_t size;
-
 
49
    char name[CONFIG_TASK_NAME_BUFLEN];
48
} init_task_t;
50
} init_task_t;
49
 
51
 
50
typedef struct {
52
typedef struct {
51
    count_t cnt;
53
    count_t cnt;
52
    init_task_t tasks[CONFIG_INIT_TASKS];
54
    init_task_t tasks[CONFIG_INIT_TASKS];