Changeset 39539da in mainline for arch/mips32/src


Ignore:
Timestamp:
2005-11-21T22:15:05Z (20 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
8cd20b70
Parents:
db79676
Message:

Rename map_page_to_frame() to page_mapping_insert() and find_mapping() to page_mapping_find().
New names should make it more apparent that these two belong together.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/mips32/src/mm/tlb.c

    rdb79676 r39539da  
    367367         * Handler cannot succeed if badvaddr has no mapping.
    368368         */
    369         pte = find_mapping(badvaddr, 0);
     369        pte = page_mapping_find(badvaddr, 0);
    370370        if (!pte) {
    371371                printf("No such mapping.\n");
Note: See TracChangeset for help on using the changeset viewer.