Changeset 98000fb in mainline for kernel/arch/mips32/src/mips32.c


Ignore:
Timestamp:
2009-06-03T19:34:45Z (15 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
301ff30
Parents:
69e68e3
Message:

remove redundant index_t and count_t types (which were always quite ambiguous and not actually needed)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/mips32/src/mips32.c

    r69e68e3 r98000fb  
    7777uintptr_t supervisor_sp __attribute__ ((section (".text")));
    7878
    79 count_t cpu_count = 0;
     79size_t cpu_count = 0;
    8080
    8181/** Performs mips32-specific initialization before main_bsp() is called. */
     
    8585        init.cnt = bootinfo->cnt;
    8686       
    87         count_t i;
     87        size_t i;
    8888        for (i = 0; i < min3(bootinfo->cnt, TASKMAP_MAX_RECORDS, CONFIG_INIT_TASKS); i++) {
    8989                init.tasks[i].addr = bootinfo->tasks[i].addr;
Note: See TracChangeset for help on using the changeset viewer.