Changes in kernel/arch/abs32le/include/interrupt.h [e837f30:7a0359b] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/abs32le/include/interrupt.h
re837f30 r7a0359b 38 38 #include <typedefs.h> 39 39 #include <verify.h> 40 #include <trace.h> 40 41 41 42 #define IVT_ITEMS 0 … … 54 55 } istate_t; 55 56 56 static inline int istate_from_uspace(istate_t *istate)57 NO_TRACE static inline int istate_from_uspace(istate_t *istate) 57 58 REQUIRES_EXTENT_MUTABLE(istate) 58 59 { … … 63 64 } 64 65 65 static inline void istate_set_retaddr(istate_t *istate, uintptr_t retaddr) 66 NO_TRACE static inline void istate_set_retaddr(istate_t *istate, 67 uintptr_t retaddr) 66 68 WRITES(&istate->ip) 67 69 { … … 71 73 } 72 74 73 static inline unative_t istate_get_pc(istate_t *istate)75 NO_TRACE static inline unative_t istate_get_pc(istate_t *istate) 74 76 REQUIRES_EXTENT_MUTABLE(istate) 75 77 { … … 79 81 } 80 82 81 static inline unative_t istate_get_fp(istate_t *istate)83 NO_TRACE static inline unative_t istate_get_fp(istate_t *istate) 82 84 REQUIRES_EXTENT_MUTABLE(istate) 83 85 {
Note:
See TracChangeset
for help on using the changeset viewer.