Added a comment (now that we're using a hash table).
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7523 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
a364fba7d4
commit
2b6b9a5afb
@ -18,13 +18,13 @@ typedef struct elf_region {
|
|||||||
} elf_region;
|
} elf_region;
|
||||||
|
|
||||||
struct elf_image_info {
|
struct elf_image_info {
|
||||||
struct elf_image_info *next;
|
struct elf_image_info *next; // next image in the hash
|
||||||
char *name;
|
char *name;
|
||||||
image_id id;
|
image_id id;
|
||||||
int32 ref_count;
|
int32 ref_count;
|
||||||
void *vnode;
|
void *vnode;
|
||||||
elf_region regions[2]; // describes the text and data regions
|
elf_region regions[2]; // describes the text and data regions
|
||||||
addr_t dynamic_ptr; // pointer to the dynamic section
|
addr_t dynamic_ptr; // pointer to the dynamic section
|
||||||
struct elf_linked_image *linked_images;
|
struct elf_linked_image *linked_images;
|
||||||
|
|
||||||
struct Elf32_Ehdr *eheader;
|
struct Elf32_Ehdr *eheader;
|
||||||
|
Loading…
Reference in New Issue
Block a user