Changes in uspace/lib/c/include/rtld/symbol.h [9d58539:0f792c28] in mainline
- File:
-
- 1 edited
-
uspace/lib/c/include/rtld/symbol.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/rtld/symbol.h
r9d58539 r0f792c28 39 39 #include <rtld/rtld.h> 40 40 41 elf_symbol_t *symbol_bfs_find(const char *name, module_t *start, module_t **mod); 42 elf_symbol_t *symbol_def_find(const char *name, module_t *origin, module_t **mod); 43 void *symbol_get_addr(elf_symbol_t *sym, module_t *m); 41 /** Symbol search flags */ 42 typedef enum { 43 /** No flags */ 44 ssf_none = 0, 45 /** Do not search tree root */ 46 ssf_noroot = 0x1 47 } symbol_search_flags_t; 48 49 extern elf_symbol_t *symbol_bfs_find(const char *, module_t *, 50 symbol_search_flags_t, module_t **); 51 extern elf_symbol_t *symbol_def_find(const char *, module_t *, 52 symbol_search_flags_t, module_t **); 53 extern void *symbol_get_addr(elf_symbol_t *, module_t *); 44 54 45 55 #endif
Note:
See TracChangeset
for help on using the changeset viewer.
