Changes in kernel/generic/include/symtab.h [da1bafb:0dee005] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/symtab.h
rda1bafb r0dee005 36 36 #define KERN_SYMTAB_H_ 37 37 38 #include < typedefs.h>38 #include <arch/types.h> 39 39 40 #define MAX_SYMBOL_NAME 40 #define MAX_SYMBOL_NAME 64 41 41 42 42 struct symtab_entry { … … 45 45 }; 46 46 47 extern int symtab_name_lookup(uintptr_t, c onst char **, uintptr_t *);48 extern c onst char *symtab_fmt_name_lookup(uintptr_t);47 extern int symtab_name_lookup(uintptr_t, char **, uintptr_t *); 48 extern char *symtab_fmt_name_lookup(uintptr_t); 49 49 extern int symtab_addr_lookup(const char *, uintptr_t *); 50 50 extern void symtab_print_search(const char *); … … 53 53 #ifdef CONFIG_SYMTAB 54 54 55 /** Symtable linked together by build process 56 * 57 */ 55 /* Symtable linked together by build process */ 58 56 extern struct symtab_entry symbol_table[]; 59 57 60 #endif /* CONFIG_SYMTAB */58 #endif 61 59 62 60 #endif
Note:
See TracChangeset
for help on using the changeset viewer.