Subversion Repositories HelenOS

Rev

Rev 1897 | Rev 1978 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1897 Rev 1899
Line 68... Line 68...
68
    uint32_t total;
68
    uint32_t total;
69
    uint32_t count;
69
    uint32_t count;
70
    memzone_t zones[MEMMAP_MAX_RECORDS];
70
    memzone_t zones[MEMMAP_MAX_RECORDS];
71
} memmap_t;
71
} memmap_t;
72
 
72
 
73
typedef struct {
-
 
74
    uint32_t clock_frequency;
-
 
75
} processor_t;
-
 
76
 
-
 
77
/** Bootinfo structure.
73
/** Bootinfo structure.
78
 *
74
 *
79
 * Must be in sync with bootinfo structure used by the boot loader.
75
 * Must be in sync with bootinfo structure used by the boot loader.
80
 */
76
 */
81
typedef struct {
77
typedef struct {
82
    taskmap_t taskmap;
78
    taskmap_t taskmap;
83
    memmap_t memmap;
79
    memmap_t memmap;
84
    processor_t processor;
-
 
85
    ballocs_t ballocs;
80
    ballocs_t ballocs;
86
    ofw_tree_node_t *ofw_root;
81
    ofw_tree_node_t *ofw_root;
87
} bootinfo_t;
82
} bootinfo_t;
88
 
83
 
89
extern bootinfo_t bootinfo;
84
extern bootinfo_t bootinfo;