Changeset 04803bf in mainline for uspace/srv/loader/include


Ignore:
Timestamp:
2011-03-21T22:00:17Z (14 years ago)
Author:
Jiri Svoboda <jiri@…>
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.
Message:

Merge mainline changes (needs fixes).

Location:
uspace/srv/loader/include
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/loader/include/arch.h

    rb50b5af2 r04803bf  
    3737#define LOADER_ARCH_H_
    3838
    39 void program_run(void *entry_point, void *pcb);
     39extern void program_run(void *entry_point, void *pcb);
    4040
    4141#endif
  • uspace/srv/loader/include/elf.h

    rb50b5af2 r04803bf  
    337337#endif
    338338
    339 extern char *elf_error(unsigned int rc);
     339extern const char *elf_error(unsigned int rc);
    340340
    341341#endif
  • uspace/srv/loader/include/elf_load.h

    rb50b5af2 r04803bf  
    2727 */
    2828
    29 /** @addtogroup generic 
     29/** @addtogroup generic
    3030 * @{
    3131 */
     
    5656
    5757        /** ELF interpreter name or NULL if statically-linked */
    58         char *interp;
     58        const char *interp;
    5959
    6060        /** Pointer to the dynamic section */
     
    8282} elf_ld_t;
    8383
    84 int elf_load_file(char *file_name, size_t so_bias, eld_flags_t flags,
     84int elf_load_file(const char *file_name, size_t so_bias, eld_flags_t flags,
    8585    elf_info_t *info);
    8686void elf_create_pcb(elf_info_t *info, pcb_t *pcb);
Note: See TracChangeset for help on using the changeset viewer.