Subversion Repositories HelenOS

Rev

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

Rev 2983 Rev 2996
Line 39... Line 39...
39
#include <arch.h>
39
#include <arch.h>
40
#include <elf_dyn.h>
40
#include <elf_dyn.h>
41
#include <symbol.h>
41
#include <symbol.h>
42
#include <rtld.h>
42
#include <rtld.h>
43
 
43
 
-
 
44
void module_process_pre_arch(module_t *m)
-
 
45
{
-
 
46
    /* Unused */
-
 
47
}
-
 
48
 
-
 
49
 
44
/**
50
/**
45
 * Process (fixup) all relocations in a relocation table.
51
 * Process (fixup) all relocations in a relocation table.
46
 */
52
 */
47
void rel_table_process(module_t *m, elf_rel_t *rt, size_t rt_size)
53
void rel_table_process(module_t *m, elf_rel_t *rt, size_t rt_size)
48
{
54
{
Line 125... Line 131...
125
        }
131
        }
126
    }
132
    }
127
 
133
 
128
}
134
}
129
 
135
 
-
 
136
void rela_table_process(module_t *m, elf_rela_t *rt, size_t rt_size)
-
 
137
{
-
 
138
    /* Unused */
-
 
139
    (void)m; (void)rt; (void)rt_size;
-
 
140
}
-
 
141
 
130
/** @}
142
/** @}
131
 */
143
 */