mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 01:27:34 +00:00
LibELF: Use VirtualAddress class from LibBareMetal
This commit is contained in:
parent
de3637d85f
commit
7c4dd0c8cf
3 changed files with 3 additions and 4 deletions
|
@ -26,10 +26,9 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include <LibBareMetal/Memory/VirtualAddress.h>
|
||||
#include <LibELF/exec_elf.h>
|
||||
|
||||
#include <Kernel/VM/VirtualAddress.h>
|
||||
|
||||
class ELFDynamicObject {
|
||||
public:
|
||||
explicit ELFDynamicObject(VirtualAddress base_address, VirtualAddress dynamic_section_address);
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
#include <AK/HashMap.h>
|
||||
#include <AK/OwnPtr.h>
|
||||
#include <AK/String.h>
|
||||
#include <Kernel/VM/VirtualAddress.h>
|
||||
#include <LibBareMetal/Memory/VirtualAddress.h>
|
||||
#include <LibELF/exec_elf.h>
|
||||
|
||||
class ELFImage {
|
||||
|
|
|
@ -33,7 +33,7 @@
|
|||
#include <LibELF/ELFImage.h>
|
||||
|
||||
#ifdef KERNEL
|
||||
#include <Kernel/VM/VirtualAddress.h>
|
||||
# include <LibBareMetal/Memory/VirtualAddress.h>
|
||||
class Region;
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue