Changeset e16e0d59 in mainline for kernel/arch/ia64
- Timestamp:
 - 2009-03-17T20:33:18Z (17 years ago)
 - Branches:
 - lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
 - Children:
 - 5eb90cb
 - Parents:
 - b1c8dc0
 - File:
 - 
      
- 1 edited
 
- 
          
  kernel/arch/ia64/src/interrupt.c (modified) (2 diffs)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
kernel/arch/ia64/src/interrupt.c
rb1c8dc0 re16e0d59 54 54 #include <synch/spinlock.h> 55 55 #include <mm/tlb.h> 56 57 #ifdef CONFIG_SYMTAB58 56 #include <symtab.h> 59 #endif60 57 61 58 #define VECTORS_64_BUNDLE 20 … … 141 138 char *ifa, *iipa, *iip; 142 139 143 #ifdef CONFIG_SYMTAB 144 ifa = get_symtab_entry(istate->cr_ifa); 145 iipa = get_symtab_entry(istate->cr_iipa); 146 iip = get_symtab_entry(istate->cr_iip); 147 #else 148 ifa = iipa = iip = "n/a"; 149 #endif 140 ifa = symtab_fmt_name_lookup(istate->cr_ifa); 141 iipa = symtab_fmt_name_lookup(istate->cr_iipa); 142 iip = symtab_fmt_name_lookup(istate->cr_iip); 150 143 151 144 putchar('\n');  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  