summaryrefslogtreecommitdiff
path: root/sysdeps/linux-gnu/x86_64/plt.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/linux-gnu/x86_64/plt.c')
-rw-r--r--sysdeps/linux-gnu/x86_64/plt.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/sysdeps/linux-gnu/x86_64/plt.c b/sysdeps/linux-gnu/x86_64/plt.c
new file mode 100644
index 0000000..b53ff44
--- /dev/null
+++ b/sysdeps/linux-gnu/x86_64/plt.c
@@ -0,0 +1,12 @@
+#include <gelf.h>
+#include "common.h"
+
+GElf_Addr
+arch_plt_sym_val(struct ltelf *lte, size_t ndx, GElf_Rela * rela) {
+ return lte->plt_addr + (ndx + 1) * 16;
+}
+
+void *
+sym2addr(Process *proc, struct library_symbol *sym) {
+ return sym->enter_addr;
+}