Changeset 04803bf in mainline for uspace/srv/loader/include/elf_load.h
- Timestamp:
- 2011-03-21T22:00:17Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 143932e3
- Parents:
- b50b5af2 (diff), 7308e84 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/loader/include/elf_load.h
rb50b5af2 r04803bf 27 27 */ 28 28 29 /** @addtogroup generic 29 /** @addtogroup generic 30 30 * @{ 31 31 */ … … 56 56 57 57 /** ELF interpreter name or NULL if statically-linked */ 58 c har *interp;58 const char *interp; 59 59 60 60 /** Pointer to the dynamic section */ … … 82 82 } elf_ld_t; 83 83 84 int elf_load_file(c har *file_name, size_t so_bias, eld_flags_t flags,84 int elf_load_file(const char *file_name, size_t so_bias, eld_flags_t flags, 85 85 elf_info_t *info); 86 86 void elf_create_pcb(elf_info_t *info, pcb_t *pcb);
Note:
See TracChangeset
for help on using the changeset viewer.