Changeset 98000fb in mainline for kernel/generic/src/mm/tlb.c


Ignore:
Timestamp:
2009-06-03T19:34:45Z (16 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/generic/src/mm/tlb.c

    r69e68e3 r98000fb  
    8080 */
    8181void tlb_shootdown_start(tlb_invalidate_type_t type, asid_t asid,
    82     uintptr_t page, count_t count)
     82    uintptr_t page, size_t count)
    8383{
    8484        unsigned int i;
     
    109109                         * Enqueue the message.
    110110                         */
    111                         index_t idx = cpu->tlb_messages_count++;
     111                        size_t idx = cpu->tlb_messages_count++;
    112112                        cpu->tlb_messages[idx].type = type;
    113113                        cpu->tlb_messages[idx].asid = asid;
     
    144144        asid_t asid;
    145145        uintptr_t page;
    146         count_t count;
     146        size_t count;
    147147        unsigned int i;
    148148       
Note: See TracChangeset for help on using the changeset viewer.