Changeset 0f792c28 in mainline for uspace/lib/c/include/rtld/symbol.h
- Timestamp:
- 2016-04-12T16:59:41Z (9 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e2e9a8a
- Parents:
- 3b0f1b9a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/rtld/symbol.h
r3b0f1b9a 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.