summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/libelfu/modeltypes.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/libelfu/modeltypes.h b/include/libelfu/modeltypes.h
index c944234..c02eb34 100644
--- a/include/libelfu/modeltypes.h
+++ b/include/libelfu/modeltypes.h
@@ -12,6 +12,9 @@ typedef struct ElfuScn {
Elf_Data data;
+ struct ElfuScn *link;
+
+ CIRCLEQ_ENTRY(ElfuScn) elemPhdrToScn;
CIRCLEQ_ENTRY(ElfuScn) elem;
} ElfuScn;
@@ -19,6 +22,8 @@ typedef struct ElfuScn {
typedef struct ElfuPhdr {
GElf_Phdr phdr;
+ CIRCLEQ_HEAD(PhdrToScnList, ElfuScn) phdrToScnList;
+
CIRCLEQ_ENTRY(ElfuPhdr) elem;
} ElfuPhdr;