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/abs32le/include/arch/mm/page.h

    r391996b r8df5f20  
    147147} __attribute__((packed)) pte_t;
    148148
    149 NO_TRACE static inline unsigned int get_pt_flags(pte_t *pt, size_t i)
     149_NO_TRACE static inline unsigned int get_pt_flags(pte_t *pt, size_t i)
    150150    REQUIRES_ARRAY_MUTABLE(pt, PTL0_ENTRIES_ARCH)
    151151{
     
    161161}
    162162
    163 NO_TRACE static inline void set_pt_flags(pte_t *pt, size_t i, int flags)
     163_NO_TRACE static inline void set_pt_flags(pte_t *pt, size_t i, int flags)
    164164    WRITES(ARRAY_RANGE(pt, PTL0_ENTRIES_ARCH))
    165165    REQUIRES_ARRAY_MUTABLE(pt, PTL0_ENTRIES_ARCH)
     
    180180}
    181181
    182 NO_TRACE static inline void set_pt_present(pte_t *pt, size_t i)
     182_NO_TRACE static inline void set_pt_present(pte_t *pt, size_t i)
    183183    WRITES(ARRAY_RANGE(pt, PTL0_ENTRIES_ARCH))
    184184    REQUIRES_ARRAY_MUTABLE(pt, PTL0_ENTRIES_ARCH)
Note: See TracChangeset for help on using the changeset viewer.