Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/mips32/include/arch/istate.h

    r8df5f20 rc5429fe  
    5050#endif /* KERNEL */
    5151
    52 _NO_TRACE static inline void istate_set_retaddr(istate_t *istate,
     52NO_TRACE static inline void istate_set_retaddr(istate_t *istate,
    5353    uintptr_t retaddr)
    5454{
     
    5757
    5858/** Return true if exception happened while in userspace */
    59 _NO_TRACE static inline int istate_from_uspace(istate_t *istate)
     59NO_TRACE static inline int istate_from_uspace(istate_t *istate)
    6060{
    6161        return istate->status & cp0_status_um_bit;
    6262}
    6363
    64 _NO_TRACE static inline uintptr_t istate_get_pc(istate_t *istate)
     64NO_TRACE static inline uintptr_t istate_get_pc(istate_t *istate)
    6565{
    6666        return istate->epc;
    6767}
    6868
    69 _NO_TRACE static inline uintptr_t istate_get_fp(istate_t *istate)
     69NO_TRACE static inline uintptr_t istate_get_fp(istate_t *istate)
    7070{
    7171        return istate->sp;
Note: See TracChangeset for help on using the changeset viewer.