Changeset 7a0359b in mainline for kernel/arch/abs32le/include/interrupt.h
- Timestamp:
- 2010-07-02T15:42:19Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- bbfdf62
- Parents:
- e3ee9b9
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/abs32le/include/interrupt.h
re3ee9b9 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.