Ignore:
Timestamp:
2019-02-11T14:56:26Z (5 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
4805495
Parents:
391996b
git-author:
Jiří Zárevúcky <zarevucky.jiri@…> (2019-02-01 23:26:21)
git-committer:
Jiří Zárevúcky <zarevucky.jiri@…> (2019-02-11 14:56:26)
Message:

Rename NO_TRACE to _NO_TRACE

<trace.h> may end up transitively included from standard headers,
so it needs to be a reserved identifier.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/mips32/include/arch/mm/page.h

    r391996b r8df5f20  
    161161} pte_t;
    162162
    163 NO_TRACE static inline unsigned int get_pt_flags(pte_t *pt, size_t i)
     163_NO_TRACE static inline unsigned int get_pt_flags(pte_t *pt, size_t i)
    164164{
    165165        pte_t *p = &pt[i];
     
    174174}
    175175
    176 NO_TRACE static inline void set_pt_flags(pte_t *pt, size_t i, int flags)
     176_NO_TRACE static inline void set_pt_flags(pte_t *pt, size_t i, int flags)
    177177{
    178178        pte_t *p = &pt[i];
     
    189189}
    190190
    191 NO_TRACE static inline void set_pt_present(pte_t *pt, size_t i)
     191_NO_TRACE static inline void set_pt_present(pte_t *pt, size_t i)
    192192{
    193193        pte_t *p = &pt[i];
Note: See TracChangeset for help on using the changeset viewer.