summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authornorly <ny-git@enpas.org>2013-06-15 13:27:42 +0100
committernorly <ny-git@enpas.org>2013-06-15 13:32:17 +0100
commit3c14755015340e48ae68aa874f672e7c9d289832 (patch)
tree123582950a75bc25b99f2767481aa69f38aaf2a7 /include
parent5af52fe4fc36c1a355f4bfad58f80f52f822f768 (diff)
Flatten symtab to file - gdb works, check breaks.
Diffstat (limited to 'include')
-rw-r--r--include/libelfu/types.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/libelfu/types.h b/include/libelfu/types.h
index 46fbc69..37e25fa 100644
--- a/include/libelfu/types.h
+++ b/include/libelfu/types.h
@@ -8,7 +8,8 @@
typedef struct ElfuSym {
- char *name;
+ GElf_Word name;
+ char *nameptr;
GElf_Addr value;
GElf_Word size;
@@ -92,6 +93,8 @@ typedef struct {
CIRCLEQ_HEAD(OrphanScnList, ElfuScn) orphanScnList;
ElfuScn *shstrtab;
+
+ ElfuScn *symtab;
} ElfuElf;
#endif