Subversion Repositories HelenOS

Rev

Rev 2927 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2927 Rev 4345
Line 46... Line 46...
46
#include <genarch/ofw/ofw_tree.h>
46
#include <genarch/ofw/ofw_tree.h>
47
 
47
 
48
#define TASKMAP_MAX_RECORDS 32
48
#define TASKMAP_MAX_RECORDS 32
49
#define MEMMAP_MAX_RECORDS  32
49
#define MEMMAP_MAX_RECORDS  32
50
 
50
 
-
 
51
#define BOOTINFO_TASK_NAME_BUFLEN 32
-
 
52
 
51
typedef struct {
53
typedef struct {
52
    void * addr;
54
    void * addr;
53
    uint32_t size;
55
    uint32_t size;
-
 
56
    char name[BOOTINFO_TASK_NAME_BUFLEN];
54
} utask_t;
57
} utask_t;
55
 
58
 
56
typedef struct {
59
typedef struct {
57
    uint32_t count;
60
    uint32_t count;
58
    utask_t tasks[TASKMAP_MAX_RECORDS];
61
    utask_t tasks[TASKMAP_MAX_RECORDS];