Changeset d6e8529 in mainline for generic/include/config.h


Ignore:
Timestamp:
2005-12-20T00:34:12Z (19 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
fa7450c
Parents:
75e1db0
Message:

remove arch/$ARCH/boot where not needed, change global Makefile accordingly
remove early_mapping() (breaks ppc32 for now)
change early heap initialization (required for init to work)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • generic/include/config.h

    r75e1db0 rd6e8529  
    4141
    4242struct config {
     43        count_t cpu_count;
     44        volatile count_t cpu_active;
     45
    4346        __address base;
    4447        size_t memory_size;
    45         size_t kernel_size;
    4648       
    4749        __address init_addr;
    4850        size_t init_size;
    49 
    50         count_t cpu_count;
    51         volatile count_t cpu_active;
     51       
     52        __address heap_addr;
     53        size_t heap_size;
     54        size_t heap_delta;            /**< Extra space between heap and stack (enforced by alignment requirements) */
     55       
     56        size_t kernel_size;           /**< Size of memory in bytes taken by kernel, heap and stack */
    5257};
    5358
Note: See TracChangeset for help on using the changeset viewer.