Changeset 04803bf in mainline for uspace/srv/loader/include
- 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. - Location:
- uspace/srv/loader/include
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/loader/include/arch.h
rb50b5af2 r04803bf 37 37 #define LOADER_ARCH_H_ 38 38 39 void program_run(void *entry_point, void *pcb);39 extern void program_run(void *entry_point, void *pcb); 40 40 41 41 #endif -
uspace/srv/loader/include/elf.h
rb50b5af2 r04803bf 337 337 #endif 338 338 339 extern c har *elf_error(unsigned int rc);339 extern const char *elf_error(unsigned int rc); 340 340 341 341 #endif -
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.