Changeset 89b1b64 in mainline for boot/arch/mips32/loader/main.h


Ignore:
Timestamp:
2009-03-04T22:35:16Z (15 years ago)
Author:
Jiri Svoboda <jirik.svoboda@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
5e9de3a
Parents:
63d1ebd
Message:

Init-task names for mips32.

File:
1 edited

Legend:

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

    r63d1ebd r89b1b64  
    3939#ifndef __ASM__
    4040
     41/** Size of buffer for storing task name in task_t. */
     42#define BOOTINFO_TASK_NAME_BUFLEN 32
     43
     44/** Struct holding information about single loaded task. */
    4145typedef struct {
     46        /** Address where the task was placed. */
    4247        void *addr;
     48        /** Size of the task's binary. */
    4349        unsigned int size;
     50        /** Task name. */
     51        char name[BOOTINFO_TASK_NAME_BUFLEN];
    4452} task_t;
    4553
Note: See TracChangeset for help on using the changeset viewer.