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:
Axel Dörfler 2004-05-11 17:20:40 +00:00
parent a364fba7d4
commit 2b6b9a5afb

View File

@ -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;