Changes in kernel/generic/include/symtab.h [98000fb:da1bafb] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/symtab.h
r98000fb rda1bafb 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.