Changeset f4c2b6a in mainline for kernel/arch/sparc64/src/trap/exception.c
- Timestamp:
- 2008-06-03T14:59:48Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2c4fb51
- Parents:
- b63f8569
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/sparc64/src/trap/exception.c
rb63f8569 rf4c2b6a 46 46 void dump_istate(istate_t *istate) 47 47 { 48 printf("TSTATE=%# llx\n", istate->tstate);49 printf("TPC=%# llx(%s)\n", istate->tpc, get_symtab_entry(istate->tpc));50 printf("TNPC=%# llx(%s)\n", istate->tnpc, get_symtab_entry(istate->tnpc));48 printf("TSTATE=%#" PRIx64 "\n", istate->tstate); 49 printf("TPC=%#" PRIx64 " (%s)\n", istate->tpc, get_symtab_entry(istate->tpc)); 50 printf("TNPC=%#" PRIx64 " (%s)\n", istate->tnpc, get_symtab_entry(istate->tnpc)); 51 51 } 52 52
Note:
See TracChangeset
for help on using the changeset viewer.