Subversion Repositories HelenOS-historic

Rev

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

Rev 1686 Rev 1780
Line 32... Line 32...
32
#define TASKMAP_MAX_RECORDS 32
32
#define TASKMAP_MAX_RECORDS 32
33
 
33
 
34
#include <arch/types.h>
34
#include <arch/types.h>
35
 
35
 
36
typedef struct {
36
typedef struct {
37
    __address addr;
37
    uintptr_t addr;
38
    __u32 size;
38
    uint32_t size;
39
} utask_t;
39
} utask_t;
40
 
40
 
41
typedef struct {
41
typedef struct {
42
    __u32 cnt;
42
    uint32_t cnt;
43
    utask_t tasks[TASKMAP_MAX_RECORDS];
43
    utask_t tasks[TASKMAP_MAX_RECORDS];
44
} bootinfo_t;
44
} bootinfo_t;
45
 
45
 
46
extern bootinfo_t bootinfo;
46
extern bootinfo_t bootinfo;
47
 
47