Changeset fc81981 in mainline for kernel/arch/abs32le/include
- Timestamp:
- 2010-06-25T14:49:42Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- decfbe56
- Parents:
- 33c4f72
- Location:
- kernel/arch/abs32le/include
- Files:
-
- 2 edited
-
interrupt.h (modified) (4 diffs)
-
mm/page.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/abs32le/include/interrupt.h
r33c4f72 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. */ -
kernel/arch/abs32le/include/mm/page.h
r33c4f72 rfc81981 140 140 141 141 static inline unsigned int get_pt_flags(pte_t *pt, size_t i) 142 REQUIRES_ARRAY_MUTABLE(pt, PTL0_ENTRIES_ARCH) 142 143 { 143 144 pte_t *p = &pt[i]; … … 155 156 156 157 static inline void set_pt_flags(pte_t *pt, size_t i, int flags) 158 WRITES(ARRAY_RANGE(pt, PTL0_ENTRIES_ARCH)) 159 REQUIRES_ARRAY_MUTABLE(pt, PTL0_ENTRIES_ARCH) 157 160 { 158 161 pte_t *p = &pt[i];
Note:
See TracChangeset
for help on using the changeset viewer.
