Subversion Repositories HelenOS

Rev

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

Rev 3686 Rev 3689
Line 57... Line 57...
57
    module_t *program;
57
    module_t *program;
58
    module_t *libc;
58
    module_t *libc;
59
 
59
 
60
    /** List of all loaded modules including rtld and the program */
60
    /** List of all loaded modules including rtld and the program */
61
    link_t modules_head;
61
    link_t modules_head;
-
 
62
 
-
 
63
    /** Temporary hack to place each module at different address. */
-
 
64
    uintptr_t next_bias;
62
} runtime_env_t;
65
} runtime_env_t;
63
 
66
 
64
extern runtime_env_t *runtime_env;
67
extern runtime_env_t *runtime_env;
65
 
68
 
66
#endif
69
#endif