Changeset 98000fb in mainline for kernel/genarch/src/mm/asid.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/genarch/src/mm/asid.c

    r69e68e3 r98000fb  
    6666#include <debug.h>
    6767
    68 static count_t asids_allocated = 0;
     68static size_t asids_allocated = 0;
    6969
    7070/** Allocate free address space identifier.
     
    121121                 * cache must be invalidated as well.
    122122                 */
    123                 as_invalidate_translation_cache(as, 0, (count_t) -1);
     123                as_invalidate_translation_cache(as, 0, (size_t) -1);
    124124               
    125125                /*
Note: See TracChangeset for help on using the changeset viewer.