Changeset 90b8d58 in mainline for uspace/srv
- 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/srv/loader
- Files:
-
- 1 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
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.