summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authornorly <ny-git@enpas.org>2013-05-27 17:21:52 +0100
committernorly <ny-git@enpas.org>2013-05-27 17:21:52 +0100
commit72a9d0790ae84475f5415444c3031b15ebf25dd4 (patch)
tree8d63755ac44bb8554bbd2ec7732a88616ed91bd0 /include
parenta4d5efde2813be325bb01deac01efa773659edc2 (diff)
Find PHDR -> PHDR dependencies
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;