Changeset 0f94c3d in mainline for kernel/generic/include/config.h


Ignore:
Timestamp:
2009-03-01T20:51:26Z (16 years ago)
Author:
Jiri Svoboda <jirik.svoboda@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
2e079b70
Parents:
0d5a50c
Message:

Read command line for multiboot modules on ia32 and copy it to task name. Other arches will need to initialize task names in the init structure to an empty string.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/include/config.h

    r0d5a50c r0f94c3d  
    4141#define STACK_SIZE  PAGE_SIZE
    4242
    43 #define CONFIG_INIT_TASKS  32
     43#define CONFIG_INIT_TASKS       32
     44
     45#define CONFIG_TASK_NAME_BUFLEN 32
    4446
    4547typedef struct {
    4648        uintptr_t addr;
    4749        size_t size;
     50        char name[CONFIG_TASK_NAME_BUFLEN];
    4851} init_task_t;
    4952
Note: See TracChangeset for help on using the changeset viewer.