Changeset 5e9de3a in mainline for boot/arch/ppc32/loader/main.h


Ignore:
Timestamp:
2009-03-04T22:45:25Z (15 years ago)
Author:
Jiri Svoboda <jirik.svoboda@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
46db10e9
Parents:
89b1b64
Message:

Init-task names for ppc32.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • boot/arch/ppc32/loader/main.h

    r89b1b64 r5e9de3a  
    3434#define TASKMAP_MAX_RECORDS 32
    3535
     36/** Size of buffer for storing task name in task_t. */
     37#define BOOTINFO_TASK_NAME_BUFLEN 32
     38
     39/** Struct holding information about single loaded task. */
    3640typedef struct {
     41        /** Address where the task was placed. */
    3742        void *addr;
     43        /** Size of the task's binary. */
    3844        unsigned int size;
     45        /** Task name. */
     46        char name[BOOTINFO_TASK_NAME_BUFLEN];
    3947} task_t;
    4048
Note: See TracChangeset for help on using the changeset viewer.