mirror of
git://git.musl-libc.org/musl
synced 2024-11-27 12:04:14 +08:00
b418ea1b66
alpha and s390x gratuitously use 64-bit entries (wasting 2x space and cache utilization) despite the values always being 32-bit. based on patch by Bobby Bingham, with changes suggested by Alexander Monakov to use the public Elf_Symndx type from link.h (and make it properly variable by arch) rather than adding new internal infrastructure for handling the type.
54 lines
921 B
C
54 lines
921 B
C
#ifndef _LINK_H
|
|
#define _LINK_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <elf.h>
|
|
#define __NEED_size_t
|
|
#define __NEED_uint32_t
|
|
#include <bits/alltypes.h>
|
|
|
|
#if UINTPTR_MAX > 0xffffffff
|
|
#define ElfW(type) Elf64_ ## type
|
|
#else
|
|
#define ElfW(type) Elf32_ ## type
|
|
#endif
|
|
|
|
#include <bits/link.h>
|
|
|
|
struct dl_phdr_info {
|
|
ElfW(Addr) dlpi_addr;
|
|
const char *dlpi_name;
|
|
const ElfW(Phdr) *dlpi_phdr;
|
|
ElfW(Half) dlpi_phnum;
|
|
unsigned long long int dlpi_adds;
|
|
unsigned long long int dlpi_subs;
|
|
size_t dlpi_tls_modid;
|
|
void *dlpi_tls_data;
|
|
};
|
|
|
|
struct link_map {
|
|
ElfW(Addr) l_addr;
|
|
char *l_name;
|
|
ElfW(Dyn) *l_ld;
|
|
struct link_map *l_next, *l_prev;
|
|
};
|
|
|
|
struct r_debug {
|
|
int r_version;
|
|
struct link_map *r_map;
|
|
ElfW(Addr) r_brk;
|
|
enum { RT_CONSISTENT, RT_ADD, RT_DELETE } r_state;
|
|
ElfW(Addr) r_ldbase;
|
|
};
|
|
|
|
int dl_iterate_phdr(int (*)(struct dl_phdr_info *, size_t, void *), void *);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|