Changeset 04803bf in mainline for kernel/generic/include/symtab.h
- Timestamp:
- 2011-03-21T22:00:17Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 143932e3
- Parents:
- b50b5af2 (diff), 7308e84 (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/include/symtab.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/symtab.h
rb50b5af2 r04803bf 36 36 #define KERN_SYMTAB_H_ 37 37 38 #include < arch/types.h>38 #include <typedefs.h> 39 39 40 #define MAX_SYMBOL_NAME 6440 #define MAX_SYMBOL_NAME 64 41 41 42 42 struct symtab_entry { … … 45 45 }; 46 46 47 extern int symtab_name_lookup(u native_t addr, char **name);48 extern c har *symtab_fmt_name_lookup(unative_t addr);49 extern int symtab_addr_lookup(const char * name, uintptr_t *addr);50 extern void symtab_print_search(const char * name);51 extern int symtab_compl(char * input, size_t size);47 extern int symtab_name_lookup(uintptr_t, const char **, uintptr_t *); 48 extern const char *symtab_fmt_name_lookup(uintptr_t); 49 extern int symtab_addr_lookup(const char *, uintptr_t *); 50 extern void symtab_print_search(const char *); 51 extern int symtab_compl(char *, size_t); 52 52 53 53 #ifdef CONFIG_SYMTAB 54 54 55 /* Symtable linked together by build process */ 55 /** Symtable linked together by build process 56 * 57 */ 56 58 extern struct symtab_entry symbol_table[]; 57 59 58 #endif 60 #endif /* CONFIG_SYMTAB */ 59 61 60 62 #endif
Note:
See TracChangeset
for help on using the changeset viewer.
