Changeset cc73a8a1 in mainline for generic/src/main/main.c


Ignore:
Timestamp:
2006-06-20T12:26:16Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
2c8a70a
Parents:
1e0a5fc
Message:

Cleanup of comments.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • generic/src/main/main.c

    r1e0a5fc rcc73a8a1  
    8888
    8989/** Global configuration structure. */
    90 config_t config = {
    91         .mm_initialized = false
    92 };
     90config_t config;
    9391
    9492/** Initial user-space tasks */
     
    9997context_t ctx;
    10098
    101 /**
     99/*
    102100 * These 'hardcoded' variables will be intialized by
    103101 * the linker or the low level assembler code with
    104102 * appropriate sizes and addresses.
    105103 */
    106 __address hardcoded_load_address = 0;
    107 size_t hardcoded_ktext_size = 0;
    108 size_t hardcoded_kdata_size = 0;
     104__address hardcoded_load_address = 0;   /**< Virtual address of where the kernel is loaded. */
     105size_t hardcoded_ktext_size = 0;        /**< Size of the kernel code in bytes. */
     106size_t hardcoded_kdata_size = 0;        /**< Size of the kernel data in bytes. */
    109107
    110108void main_bsp(void);
     
    202200        page_init();
    203201        tlb_init();
    204         config.mm_initialized = true;
    205202        arch_post_mm_init();
    206203
Note: See TracChangeset for help on using the changeset viewer.