Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 2410 → Rev 2411

/branches/arm/kernel/arch/arm32/include/boot.h
46,8 → 46,10
 
/** Struct holding information about single loaded uspace task. */
typedef struct {
 
/** Address where the task was placed. */
uintptr_t addr;
 
/** Size of the task's binary. */
uint32_t size;
} utask_t;
55,8 → 57,10
 
/** Struct holding information about loaded uspace tasks. */
typedef struct {
 
/** Number of loaded tasks. */
uint32_t cnt;
 
/** Array of loaded tasks. */
utask_t tasks[TASKMAP_MAX_RECORDS];
} bootinfo_t;