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

Kernel: Rename RegisterDump => RegisterState

This commit is contained in:
Andreas Kling 2020-02-16 00:15:37 +01:00
parent 5507945306
commit 0341ddc5eb
10 changed files with 79 additions and 79 deletions

View file

@ -242,7 +242,7 @@ public:
};
class IRQHandler;
struct RegisterDump;
struct RegisterState;
void gdt_init();
void idt_init();
@ -258,7 +258,7 @@ u16 gdt_alloc_entry();
void gdt_free_entry(u16);
Descriptor& get_gdt_entry(u16 selector);
void write_gdt_entry(u16 selector, Descriptor&);
void handle_crash(RegisterDump&, const char* description, int signal);
void handle_crash(RegisterState&, const char* description, int signal);
[[noreturn]] static inline void hang()
{
@ -415,7 +415,7 @@ private:
VirtualAddress m_vaddr;
};
struct [[gnu::packed]] RegisterDump
struct [[gnu::packed]] RegisterState
{
u32 ss;
u32 gs;