Ignore:
File:
1 edited

Legend:

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

    rc19aa612 rd99c1d2  
    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,
     
    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.
     
    102101                return name;
    103102        case ENOENT:
    104                 return "unknown";
     103                return "Not found";
    105104        default:
    106105                return "N/A";
Note: See TracChangeset for help on using the changeset viewer.