Changeset dc0d8b52 in mainline
- Timestamp:
- 2016-04-21T14:01:12Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 054476d, 6adb775f
- Parents:
- 17341d4
- Location:
- uspace/lib/c
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/elf/elf_load.c
r17341d4 rdc0d8b52 36 36 */ 37 37 38 #include <elf/elf_load.h> 39 #include <elf/elf_mod.h> 38 40 #include <errno.h> 39 41 #include <stdio.h> 40 #include <elf/elf_load.h> 41 #include <elf/elf_mod.h> 42 #include <stdlib.h> 43 44 #ifdef CONFIG_RTLD 42 45 #include <rtld/rtld.h> 43 46 #endif 44 47 45 48 #define DPRINTF(...) -
uspace/lib/c/include/elf/elf_load.h
r17341d4 rdc0d8b52 38 38 39 39 #include <elf/elf_mod.h> 40 #include <rtld/rtld.h>41 40 42 41 /** Information on loaded ELF program */ 43 42 typedef struct { 44 43 elf_finfo_t finfo; 45 rtld_t*env;44 struct rtld *env; 46 45 } elf_info_t; 47 46
Note:
See TracChangeset
for help on using the changeset viewer.