Changeset 810a36f in mainline for kernel/arch/ia64
- Timestamp:
- 2017-10-24T05:29:08Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b1eb7ef
- Parents:
- c8fbbe7 (diff), 673ea28 (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/ia64
- Files:
-
- 2 edited
-
include/arch/types.h (modified) (2 diffs)
-
src/interrupt.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia64/include/arch/types.h
rc8fbbe7 r810a36f 36 36 #define KERN_ia64_TYPES_H_ 37 37 38 #include <arch/common.h> 39 40 typedef uint64_t size_t; 41 typedef int64_t ssize_t; 42 43 typedef uint64_t uintptr_t; 44 typedef uint64_t pfn_t; 45 46 typedef uint64_t ipl_t; 47 48 typedef uint64_t sysarg_t; 49 typedef int64_t native_t; 50 typedef uint64_t atomic_count_t; 38 #include <_bits/all.h> 51 39 52 40 typedef struct { … … 55 43 } __attribute__((may_alias)) fncptr_t; 56 44 57 #define PRIdn PRId64 /**< Format for native_t. */58 #define PRIun PRIu64 /**< Format for sysarg_t. */59 #define PRIxn PRIx64 /**< Format for hexadecimal sysarg_t. */60 #define PRIua PRIu64 /**< Format for atomic_count_t. */61 62 45 #endif 63 46 -
kernel/arch/ia64/src/interrupt.c
rc8fbbe7 r810a36f 142 142 istate->cr_isr.value, istate->cr_ipsr.value); 143 143 144 printf("cr.iip=%#0" PRIx 64", #%u\t(%s)\n",144 printf("cr.iip=%#0" PRIxPTR ", #%u\t(%s)\n", 145 145 istate->cr_iip, istate->cr_isr.ei, 146 146 symtab_fmt_name_lookup(istate->cr_iip)); 147 printf("cr.iipa=%#0" PRIx 64"\t(%s)\n", istate->cr_iipa,147 printf("cr.iipa=%#0" PRIxPTR "\t(%s)\n", istate->cr_iipa, 148 148 symtab_fmt_name_lookup(istate->cr_iipa)); 149 printf("cr.ifa=%#0" PRIx 64"\t(%s)\n", istate->cr_ifa,149 printf("cr.ifa=%#0" PRIxPTR "\t(%s)\n", istate->cr_ifa, 150 150 symtab_fmt_name_lookup(istate->cr_ifa)); 151 151 }
Note:
See TracChangeset
for help on using the changeset viewer.
