Changeset c621f4aa in mainline for kernel/generic/src/debug/symtab.c
- Timestamp:
- 2010-07-25T10:11:13Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 377cce8
- Parents:
- 24a2517 (diff), a2da43c (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
kernel/generic/src/debug/symtab.c (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/debug/symtab.c
r24a2517 rc621f4aa 38 38 #include <symtab.h> 39 39 #include <byteorder.h> 40 #include <str ing.h>40 #include <str.h> 41 41 #include <print.h> 42 #include < arch/types.h>42 #include <typedefs.h> 43 43 #include <typedefs.h> 44 44 #include <errno.h> … … 46 46 /** Get name of a symbol that seems most likely to correspond to address. 47 47 * 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. 51 51 * 52 52 * @return Zero on success or negative error code, ENOENT if not found, … … 54 54 * 55 55 */ 56 int symtab_name_lookup(uintptr_t addr, c har **name, uintptr_t *offset)56 int symtab_name_lookup(uintptr_t addr, const char **name, uintptr_t *offset) 57 57 { 58 58 #ifdef CONFIG_SYMTAB … … 83 83 /** Lookup symbol by address and format for display. 84 84 * 85 * Returns name of closest corresponding symbol, "Not found" if none exists 86 * or "N/A" if no symbol information is available. 85 * Returns name of closest corresponding symbol, 86 * "unknown" if none exists and "N/A" if no symbol 87 * information is available. 87 88 * 88 89 * @param addr Address. … … 92 93 * 93 94 */ 94 c har *symtab_fmt_name_lookup(uintptr_t addr)95 { 96 c har *name;95 const char *symtab_fmt_name_lookup(uintptr_t addr) 96 { 97 const char *name; 97 98 int rc = symtab_name_lookup(addr, &name, NULL); 98 99 … … 101 102 return name; 102 103 case ENOENT: 103 return " Not found";104 return "unknown"; 104 105 default: 105 106 return "N/A"; … … 239 240 printf("\n"); 240 241 pos = 0; 241 while ( (hint = symtab_search_one(name, &pos))) {242 while (symtab_search_one(name, &pos)) { 242 243 printf("%s\n", symbol_table[pos].symbol_name); 243 244 pos++;
Note:
See TracChangeset
for help on using the changeset viewer.
