Changeset 90b8d58 in mainline
- Timestamp:
- 2011-07-23T12:58:15Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- bfdb5af1
- Parents:
- 5baf209
- Location:
- uspace
- Files:
-
- 1 deleted
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/Makefile
r5baf209 r90b8d58 58 58 -include $(CONFIG_MAKEFILE) 59 59 -include arch/$(UARCH)/Makefile.inc 60 61 EXTRA_CFLAGS += -I../../srv/loader/include62 60 63 61 GENERIC_SOURCES = \ -
uspace/lib/c/include/elf/elf.h
r5baf209 r90b8d58 358 358 #endif 359 359 360 /*361 * Note types are not defined by the standard. These are the ones used362 * by SVr4 derivatives.363 */364 #define NT_PRSTATUS 1365 366 extern char *elf_error(unsigned int rc);367 368 360 #endif 369 361 -
uspace/lib/c/include/rtld/elf_dyn.h
r5baf209 r90b8d58 39 39 #include <sys/types.h> 40 40 41 #include <elf .h>41 #include <elf/elf.h> 42 42 #include <libarch/rtld/elf_dyn.h> 43 43 -
uspace/lib/c/include/rtld/symbol.h
r5baf209 r90b8d58 36 36 #define LIBC_RTLD_SYMBOL_H_ 37 37 38 #include <elf/elf.h> 38 39 #include <rtld/rtld.h> 39 #include <elf.h>40 40 41 41 elf_symbol_t *symbol_bfs_find(const char *name, module_t *start, module_t **mod); -
uspace/srv/loader/elf_load.c
r5baf209 r90b8d58 49 49 #include <assert.h> 50 50 #include <as.h> 51 #include <elf/elf.h> 51 52 #include <unistd.h> 52 53 #include <fcntl.h> … … 55 56 #include <entry_point.h> 56 57 57 #include "elf.h"58 58 #include "elf_load.h" 59 59 -
uspace/srv/loader/include/elf_load.h
r5baf209 r90b8d58 38 38 39 39 #include <arch/elf.h> 40 #include <elf/elf.h> 40 41 #include <sys/types.h> 41 42 #include <loader/pcb.h> 42 43 43 #include "elf.h"44 44 45 45 typedef enum { … … 82 82 } elf_ld_t; 83 83 84 int elf_load_file(const char *file_name, size_t so_bias, eld_flags_t flags, 85 elf_info_t *info);86 void elf_create_pcb(elf_info_t *info, pcb_t *pcb);84 extern const char *elf_error(unsigned int); 85 extern int elf_load_file(const char *, size_t, eld_flags_t, elf_info_t *); 86 extern void elf_create_pcb(elf_info_t *, pcb_t *); 87 87 88 88 #endif -
uspace/srv/loader/main.c
r5baf209 r90b8d58 59 59 #include <str.h> 60 60 #include <as.h> 61 #include <elf.h> 62 #include <elf_load.h> 61 #include <elf/elf.h> 62 63 #include "elf_load.h" 63 64 64 65 #ifdef CONFIG_RTLD
Note:
See TracChangeset
for help on using the changeset viewer.