Changeset adecf496 in mainline for src/main/main.c


Ignore:
Timestamp:
2005-09-23T22:54:45Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
48a02ef
Parents:
4841104
Message:

Revert previous change in frame_t as it broke IA-64.
(Most likely some alignment problem.)

Rename heap_init(), malloc() and free(), respectively, to early_heap_init(), early_malloc() and early_free(), respectively.
Define new macros malloc() and free(). They are to be replaced by real functions some day.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/main/main.c

    r4841104 radecf496  
    148148       
    149149        arch_pre_mm_init();
    150         heap_init(config.base + hardcoded_ktext_size + hardcoded_kdata_size, heap_size + heap_delta);
     150        early_heap_init(config.base + hardcoded_ktext_size + hardcoded_kdata_size, heap_size + heap_delta);
    151151        frame_init();
    152152        page_init();
Note: See TracChangeset for help on using the changeset viewer.