Changeset e2b762ec in mainline for kernel/arch/ia64/src/interrupt.c


Ignore:
Timestamp:
2009-03-16T21:58:05Z (15 years ago)
Author:
Jiri Svoboda <jirik.svoboda@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f36c061
Parents:
d9167a1c
Message:

Make kernel symbol information optional.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/ia64/src/interrupt.c

    rd9167a1c re2b762ec  
    3939#include <panic.h>
    4040#include <print.h>
    41 #include <symtab.h>
    4241#include <debug.h>
    4342#include <console/console.h>
     
    5655#include <mm/tlb.h>
    5756
     57#ifdef CONFIG_SYMTAB
     58#include <symtab.h>
     59#endif
     60
    5861#define VECTORS_64_BUNDLE       20
    5962#define VECTORS_16_BUNDLE       48
     
    138141        char *ifa, *iipa, *iip;
    139142
     143#ifdef CONFIG_SYMTAB
    140144        ifa = get_symtab_entry(istate->cr_ifa);
    141145        iipa = get_symtab_entry(istate->cr_iipa);
    142146        iip = get_symtab_entry(istate->cr_iip);
     147#else
     148        ifa = iipa = iip = "n/a";
     149#endif
    143150
    144151        putchar('\n');
Note: See TracChangeset for help on using the changeset viewer.