Changes in uspace/lib/c/include/rtld/rtld.h [17341d4:9d58539] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/rtld/rtld.h
r17341d4 r9d58539 36 36 #define LIBC_RTLD_H_ 37 37 38 #include <sys/types.h> 38 39 #include <adt/list.h> 39 #include <elf/elf_mod.h>40 #include <sys/types.h>41 40 42 41 #include <rtld/dynamic.h> 43 #include < types/rtld/rtld.h>42 #include <rtld/module.h> 44 43 45 extern rtld_t *runtime_env; 44 typedef struct { 45 elf_dyn_t *rtld_dynamic; 46 module_t rtld; 47 48 module_t *program; 49 50 /** List of all loaded modules including rtld and the program */ 51 list_t modules; 52 53 /** Temporary hack to place each module at different address. */ 54 uintptr_t next_bias; 55 } runtime_env_t; 56 57 extern runtime_env_t *runtime_env; 46 58 47 59 extern void rtld_init_static(void); 48 extern int rtld_prog_process(elf_finfo_t *, rtld_t **);49 60 50 61 #endif
Note:
See TracChangeset
for help on using the changeset viewer.