Changes in kernel/arch/abs32le/include/interrupt.h [e837f30:d99c1d2] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/abs32le/include/interrupt.h
re837f30 rd99c1d2 37 37 38 38 #include <typedefs.h> 39 #include <verify.h>40 39 41 40 #define IVT_ITEMS 0 … … 55 54 56 55 static inline int istate_from_uspace(istate_t *istate) 57 REQUIRES_EXTENT_MUTABLE(istate)58 56 { 59 57 /* On real hardware this checks whether the interrupted … … 64 62 65 63 static inline void istate_set_retaddr(istate_t *istate, uintptr_t retaddr) 66 WRITES(&istate->ip)67 64 { 68 65 /* On real hardware this sets the instruction pointer. */ … … 72 69 73 70 static inline unative_t istate_get_pc(istate_t *istate) 74 REQUIRES_EXTENT_MUTABLE(istate)75 71 { 76 72 /* On real hardware this returns the instruction pointer. */ … … 80 76 81 77 static inline unative_t istate_get_fp(istate_t *istate) 82 REQUIRES_EXTENT_MUTABLE(istate)83 78 { 84 79 /* On real hardware this returns the frame pointer. */
Note:
See TracChangeset
for help on using the changeset viewer.