Changeset 7bdcc45 in mainline for kernel/arch/ppc32/include
- Timestamp:
- 2010-12-16T16:38:49Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7837101
- Parents:
- 8e58f94 (diff), eb221e5 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - Location:
- kernel/arch/ppc32/include
- Files:
-
- 2 edited
-
exception.h (modified) (1 diff)
-
types.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ppc32/include/exception.h
r8e58f94 r7bdcc45 98 98 } 99 99 100 NO_TRACE static inline unative_t istate_get_pc(istate_t *istate)100 NO_TRACE static inline sysarg_t istate_get_pc(istate_t *istate) 101 101 { 102 102 return istate->pc; 103 103 } 104 104 105 NO_TRACE static inline unative_t istate_get_fp(istate_t *istate)105 NO_TRACE static inline sysarg_t istate_get_fp(istate_t *istate) 106 106 { 107 107 return istate->sp; -
kernel/arch/ppc32/include/types.h
r8e58f94 r7bdcc45 43 43 typedef uint32_t ipl_t; 44 44 45 typedef uint32_t unative_t;45 typedef uint32_t sysarg_t; 46 46 typedef int32_t native_t; 47 47 typedef uint32_t atomic_count_t; … … 50 50 } fncptr_t; 51 51 52 /** Formats for uintptr_t, size_t */ 53 #define PRIp "x" 54 #define PRIs "u" 52 #define INTN_C(c) INT32_C(c) 53 #define UINTN_C(c) UINT32_C(c) 55 54 56 /** Formats for (u)int8_t, (u)int16_t, (u)int32_t, (u)int64_t and (u)native_t */ 57 #define PRId8 "d" 58 #define PRId16 "d" 59 #define PRId32 "d" 60 #define PRId64 "lld" 61 #define PRIdn "d" 62 63 #define PRIu8 "u" 64 #define PRIu16 "u" 65 #define PRIu32 "u" 66 #define PRIu64 "llu" 67 #define PRIun "u" 68 69 #define PRIx8 "x" 70 #define PRIx16 "x" 71 #define PRIx32 "x" 72 #define PRIx64 "llx" 73 #define PRIxn "x" 55 #define PRIdn PRId32 /**< Format for native_t. */ 56 #define PRIun PRIu32 /**< Format for sysarg_t. */ 57 #define PRIxn PRIx32 /**< Format for hexadecimal sysarg_t. */ 58 #define PRIua PRIu32 /**< Format for atomic_count_t. */ 74 59 75 60 #endif
Note:
See TracChangeset
for help on using the changeset viewer.
