Subversion Repositories HelenOS

Rev

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

Rev 2999 Rev 3562
Line 39... Line 39...
39
#include <libadt/list.h>
39
#include <libadt/list.h>
40
 
40
 
41
#include <dynamic.h>
41
#include <dynamic.h>
42
#include <module.h>
42
#include <module.h>
43
 
43
 
-
 
44
/* Define to enable debugging mode. */
-
 
45
#undef RTLD_DEBUG
-
 
46
 
-
 
47
#ifdef RTLD_DEBUG
-
 
48
    #define DPRINTF(format, ...) printf(format, ##__VA_ARGS__);
-
 
49
#else
-
 
50
    #define DPRINTF(format, ...)
-
 
51
#endif
-
 
52
 
44
typedef struct {
53
typedef struct {
45
    elf_dyn_t *rtld_dynamic;
54
    elf_dyn_t *rtld_dynamic;
46
    module_t rtld;
55
    module_t rtld;
47
 
56
 
48
    module_t *program;
57
    module_t *program;