Changes in kernel/arch/sparc64/include/interrupt.h [598f90e:7a0359b] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/sparc64/include/interrupt.h
r598f90e r7a0359b 38 38 39 39 #include <typedefs.h> 40 #include <arch/istate.h> 40 #include <arch/regdef.h> 41 #include <trace.h> 41 42 42 43 #define IVT_ITEMS 15 … … 50 51 }; 51 52 53 typedef struct istate { 54 uint64_t tnpc; 55 uint64_t tpc; 56 uint64_t tstate; 57 } istate_t; 58 59 NO_TRACE static inline void istate_set_retaddr(istate_t *istate, 60 uintptr_t retaddr) 61 { 62 istate->tpc = retaddr; 63 } 64 65 NO_TRACE static inline int istate_from_uspace(istate_t *istate) 66 { 67 return !(istate->tstate & TSTATE_PRIV_BIT); 68 } 69 70 NO_TRACE static inline unative_t istate_get_pc(istate_t *istate) 71 { 72 return istate->tpc; 73 } 74 75 NO_TRACE static inline unative_t istate_get_fp(istate_t *istate) 76 { 77 /* TODO */ 78 79 return 0; 80 } 81 52 82 #endif 53 83
Note:
See TracChangeset
for help on using the changeset viewer.