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