Changes in uspace/lib/c/include/rtld/symbol.h [0f792c28:9d58539] 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
r0f792c28 r9d58539 39 39 #include <rtld/rtld.h> 40 40 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 *); 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); 54 44 55 45 #endif
Note:
See TracChangeset
for help on using the changeset viewer.
