Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/abs32le/include/interrupt.h

    r7a0359b rd99c1d2  
    3737
    3838#include <typedefs.h>
    39 #include <verify.h>
    40 #include <trace.h>
    4139
    4240#define IVT_ITEMS  0
     
    5553} istate_t;
    5654
    57 NO_TRACE static inline int istate_from_uspace(istate_t *istate)
    58     REQUIRES_EXTENT_MUTABLE(istate)
     55static inline int istate_from_uspace(istate_t *istate)
    5956{
    6057        /* On real hardware this checks whether the interrupted
     
    6461}
    6562
    66 NO_TRACE static inline void istate_set_retaddr(istate_t *istate,
    67     uintptr_t retaddr)
    68     WRITES(&istate->ip)
     63static inline void istate_set_retaddr(istate_t *istate, uintptr_t retaddr)
    6964{
    7065        /* On real hardware this sets the instruction pointer. */
     
    7368}
    7469
    75 NO_TRACE static inline unative_t istate_get_pc(istate_t *istate)
    76     REQUIRES_EXTENT_MUTABLE(istate)
     70static inline unative_t istate_get_pc(istate_t *istate)
    7771{
    7872        /* On real hardware this returns the instruction pointer. */
     
    8175}
    8276
    83 NO_TRACE static inline unative_t istate_get_fp(istate_t *istate)
    84     REQUIRES_EXTENT_MUTABLE(istate)
     77static inline unative_t istate_get_fp(istate_t *istate)
    8578{
    8679        /* On real hardware this returns the frame pointer. */
Note: See TracChangeset for help on using the changeset viewer.