mirror of https://github.com/m-labs/artiq.git
runtime/elf_loader: add alignment comment
This commit is contained in:
parent
459da723d3
commit
d99976dc37
|
@ -10,6 +10,7 @@ typedef void * (*symbol_resolver)(const char *);
|
||||||
typedef int (*symbol_callback)(const char *, void *);
|
typedef int (*symbol_callback)(const char *, void *);
|
||||||
|
|
||||||
void *find_symbol(const struct symbol *symbols, const char *name);
|
void *find_symbol(const struct symbol *symbols, const char *name);
|
||||||
|
/* elf_data must be aligned on a 32-bit boundary */
|
||||||
int load_elf(symbol_resolver resolver, symbol_callback callback, void *elf_data, int elf_length, void *dest, int dest_length);
|
int load_elf(symbol_resolver resolver, symbol_callback callback, void *elf_data, int elf_length, void *dest, int dest_length);
|
||||||
|
|
||||||
#endif /* __ELF_LOADER_H */
|
#endif /* __ELF_LOADER_H */
|
||||||
|
|
Loading…
Reference in New Issue