1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 05:07:35 +00:00

Kernel+Userland: Remove dependency on i386-specific registers

This commit is contained in:
Liav A 2022-10-04 05:39:57 +03:00 committed by Andreas Kling
parent 445b5e1e94
commit 85b453c2e4
18 changed files with 47 additions and 124 deletions

View file

@ -15,7 +15,7 @@
#include <LibDebug/Dwarf/DwarfInfo.h>
#include <LibDebug/Dwarf/LineProgram.h>
#include <LibELF/Image.h>
#include <sys/arch/i386/regs.h>
#include <sys/arch/regs.h>
namespace Debug {

View file

@ -13,7 +13,7 @@
#include <AK/NonnullRefPtr.h>
#include <AK/Optional.h>
#include <AK/OwnPtr.h>
#include <LibC/sys/arch/i386/regs.h>
#include <LibC/sys/arch/regs.h>
#include <LibCore/MappedFile.h>
#include <LibDebug/DebugInfo.h>
#include <LibDebug/ProcessInspector.h>

View file

@ -8,7 +8,7 @@
#include <AK/Format.h>
#include <AK/MemoryStream.h>
#include <sys/arch/i386/regs.h>
#include <sys/arch/regs.h>
namespace Debug::Dwarf::Expression {

View file

@ -9,7 +9,7 @@
#include "LoadedLibrary.h"
#include <AK/Types.h>
#include <LibC/sys/arch/i386/regs.h>
#include <LibC/sys/arch/regs.h>
namespace Debug {