Rev 2071 | Rev 4215 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 2071 | Rev 4137 | ||
|---|---|---|---|
| Line 42... | Line 42... | ||
| 42 | struct symtab_entry { |
42 | struct symtab_entry { |
| 43 | uint64_t address_le; |
43 | uint64_t address_le; |
| 44 | char symbol_name[MAX_SYMBOL_NAME]; |
44 | char symbol_name[MAX_SYMBOL_NAME]; |
| 45 | }; |
45 | }; |
| 46 | 46 | ||
| - | 47 | extern int symtab_name_lookup(unative_t addr, char **name); |
|
| 47 | extern char * get_symtab_entry(unative_t addr); |
48 | extern char *symtab_fmt_name_lookup(unative_t addr); |
| 48 | extern uintptr_t get_symbol_addr(const char *name); |
49 | extern int symtab_addr_lookup(const char *name, uintptr_t *addr); |
| 49 | extern void symtab_print_search(const char *name); |
50 | extern void symtab_print_search(const char *name); |
| 50 | extern int symtab_compl(char *name); |
51 | extern int symtab_compl(char *name); |
| 51 | 52 | ||
| - | 53 | #ifdef CONFIG_SYMTAB |
|
| - | 54 | ||
| 52 | /* Symtable linked together by build process */ |
55 | /* Symtable linked together by build process */ |
| 53 | extern struct symtab_entry symbol_table[]; |
56 | extern struct symtab_entry symbol_table[]; |
| 54 | 57 | ||
| 55 | #endif |
58 | #endif |
| 56 | 59 | ||
| - | 60 | #endif |
|
| - | 61 | ||
| 57 | /** @} |
62 | /** @} |
| 58 | */ |
63 | */ |