Subversion Repositories HelenOS

Rev

Rev 2972 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2972 Rev 3004
Line 46... Line 46...
46
 */
46
 */
47
typedef struct {
47
typedef struct {
48
    /** Entry point */
48
    /** Entry point */
49
    entry_point_t entry;
49
    entry_point_t entry;
50
 
50
 
-
 
51
    /** ELF interpreter name or NULL if statically-linked */
-
 
52
    char *interp;
-
 
53
 
51
    /** Pointer to the dynamic section */
54
    /** Pointer to the dynamic section */
52
    void *dynamic; 
55
    void *dynamic;
53
} elf_info_t;
56
} elf_info_t;
54
 
57
 
55
/**
58
/**
56
 * Holds information about an ELF binary being loaded.
59
 * Holds information about an ELF binary being loaded.
57
 */
60
 */