Changeset e2b762ec in mainline for kernel/arch/ppc32/src/mm/tlb.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/ppc32/src/mm/tlb.c

    rd9167a1c re2b762ec  
    4040#include <arch.h>
    4141#include <print.h>
     42#include <macros.h>
     43
     44#ifdef CONFIG_SYMTAB
    4245#include <symtab.h>
    43 #include <macros.h>
    44 
     46#endif
    4547
    4648static unsigned int seed = 10;
     
    122124        char *sym2 = "";
    123125
     126#ifdef CONFIG_SYMTAB
    124127        char *str = get_symtab_entry(istate->pc);
    125128        if (str)
     
    128131        if (str)
    129132                sym2 = str;
     133#endif
    130134
    131135        fault_if_from_uspace(istate,
Note: See TracChangeset for help on using the changeset viewer.