Changeset e16e0d59 in mainline for kernel/generic/include/symtab.h
- Timestamp:
- 2009-03-17T20:33:18Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5eb90cb
- Parents:
- b1c8dc0
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/symtab.h
rb1c8dc0 re16e0d59 45 45 }; 46 46 47 extern char * get_symtab_entry(unative_t addr); 48 extern uintptr_t get_symbol_addr(const char *name); 47 extern int symtab_name_lookup(unative_t addr, char **name); 48 extern char *symtab_fmt_name_lookup(unative_t addr); 49 extern int symtab_addr_lookup(const char *name, uintptr_t *addr); 49 50 extern void symtab_print_search(const char *name); 50 51 extern int symtab_compl(char *name); 52 53 #ifdef CONFIG_SYMTAB 51 54 52 55 /* Symtable linked together by build process */ … … 55 58 #endif 56 59 60 #endif 61 57 62 /** @} 58 63 */
Note:
See TracChangeset
for help on using the changeset viewer.