Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/debug/symtab.c

    r7e752b2 r0dee005  
    3838#include <symtab.h>
    3939#include <byteorder.h>
    40 #include <str.h>
     40#include <string.h>
    4141#include <print.h>
    42 #include <typedefs.h>
     42#include <arch/types.h>
    4343#include <typedefs.h>
    4444#include <errno.h>
     
    4646/** Get name of a symbol that seems most likely to correspond to address.
    4747 *
    48  * @param addr   Address.
    49  * @param name   Place to store pointer to the symbol name.
    50  * @param offset Place to store offset from the symbol address.
     48 * @param addr          Address.
     49 * @param name          Place to store pointer to the symbol name.
     50 * @param offset        Place to store offset from the symbol address.
    5151 *
    5252 * @return Zero on success or negative error code, ENOENT if not found,
     
    5454 *
    5555 */
    56 int symtab_name_lookup(uintptr_t addr, const char **name, uintptr_t *offset)
     56int symtab_name_lookup(uintptr_t addr, char **name, uintptr_t *offset)
    5757{
    5858#ifdef CONFIG_SYMTAB
     
    8383/** Lookup symbol by address and format for display.
    8484 *
    85  * Returns name of closest corresponding symbol,
    86  * "unknown" if none exists and "N/A" if no symbol
    87  * information is available.
     85 * Returns name of closest corresponding symbol, "Not found" if none exists
     86 * or "N/A" if no symbol information is available.
    8887 *
    8988 * @param addr Address.
     
    9392 *
    9493 */
    95 const char *symtab_fmt_name_lookup(uintptr_t addr)
    96 {
    97         const char *name;
     94char *symtab_fmt_name_lookup(uintptr_t addr)
     95{
     96        char *name;
    9897        int rc = symtab_name_lookup(addr, &name, NULL);
    9998       
     
    102101                return name;
    103102        case ENOENT:
    104                 return "unknown";
     103                return "Not found";
    105104        default:
    106105                return "N/A";
     
    192191                uintptr_t addr = uint64_t_le2host(symbol_table[pos].address_le);
    193192                char *realname = symbol_table[pos].symbol_name;
    194                 printf("%p: %s\n", (void *) addr, realname);
     193                printf("%p: %s\n", addr, realname);
    195194                pos++;
    196195        }
     
    240239                printf("\n");
    241240                pos = 0;
    242                 while (symtab_search_one(name, &pos)) {
     241                while ((hint = symtab_search_one(name, &pos))) {
    243242                        printf("%s\n", symbol_table[pos].symbol_name);
    244243                        pos++;
Note: See TracChangeset for help on using the changeset viewer.