Files
haiku-beta6/headers/private/kernel/boot/elf.h
T
Axel Dörfler c2c0779e26 Added two fields that ease the kernel initialization of the preloaded images.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7503 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-05-10 16:50:20 +00:00

27 lines
545 B
C

/*
** Copyright 2003-2004, Axel Dörfler, [email protected]. All rights reserved.
** Distributed under the terms of the OpenBeOS License.
*/
#ifndef KERNEL_BOOT_ELF_H
#define KERNEL_BOOT_ELF_H
#include <elf_priv.h>
#include <boot/kernel_args.h>
struct preloaded_image {
struct preloaded_image *next;
char *name;
elf_region text_region;
elf_region data_region;
addr_range dynamic_section;
struct Elf32_Ehdr elf_header;
// these will be filled out in the kernel
area_id text;
area_id data;
};
#endif /* KERNEL_BOOT_ELF_H */