summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/libelfu/modeltypes.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/libelfu/modeltypes.h b/include/libelfu/modeltypes.h
index 961f904..e8a9c01 100644
--- a/include/libelfu/modeltypes.h
+++ b/include/libelfu/modeltypes.h
@@ -15,7 +15,7 @@ typedef struct ElfuScn {
struct ElfuScn *linkptr;
struct ElfuScn *infoptr;
- CIRCLEQ_ENTRY(ElfuScn) elemPhdrToScn;
+ CIRCLEQ_ENTRY(ElfuScn) elemChildScn;
CIRCLEQ_ENTRY(ElfuScn) elem;
} ElfuScn;
@@ -23,8 +23,10 @@ typedef struct ElfuScn {
typedef struct ElfuPhdr {
GElf_Phdr phdr;
- CIRCLEQ_HEAD(PhdrToScnList, ElfuScn) phdrToScnList;
+ CIRCLEQ_HEAD(ChildScnList, ElfuScn) childScnList;
+ CIRCLEQ_HEAD(ChildPhdrList, ElfuPhdr) childPhdrList;
+ CIRCLEQ_ENTRY(ElfuPhdr) elemChildPhdr;
CIRCLEQ_ENTRY(ElfuPhdr) elem;
} ElfuPhdr;