Changeset 3ee8a075 in mainline for kernel/arch/sparc64/src/mm/tlb.c


Ignore:
Timestamp:
2007-06-06T20:25:51Z (18 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
6b781c0
Parents:
44bec47
Message:

Replace gcc-specific FUNCTION with C99 func.
suncc's xregs=no%float can be used only on sparc64.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/sparc64/src/mm/tlb.c

    r44bec47 r3ee8a075  
    226226                if (as_page_fault(va, PF_ACCESS_EXEC, istate) == AS_PF_FAULT) {
    227227                        do_fast_instruction_access_mmu_miss_fault(istate,
    228                             __FUNCTION__);
     228                            __func__);
    229229                }
    230230        }
     
    254254                        /* NULL access in kernel */
    255255                        do_fast_data_access_mmu_miss_fault(istate, tag,
    256                             __FUNCTION__);
     256                            __func__);
    257257                }
    258258                do_fast_data_access_mmu_miss_fault(istate, tag, "Unexpected "
     
    281281                if (as_page_fault(va, PF_ACCESS_READ, istate) == AS_PF_FAULT) {
    282282                        do_fast_data_access_mmu_miss_fault(istate, tag,
    283                             __FUNCTION__);
     283                            __func__);
    284284                }
    285285        }
     
    327327                if (as_page_fault(va, PF_ACCESS_WRITE, istate) == AS_PF_FAULT) {
    328328                        do_fast_data_access_protection_fault(istate, tag,
    329                             __FUNCTION__);
     329                            __func__);
    330330                }
    331331        }
Note: See TracChangeset for help on using the changeset viewer.