mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 16:45:03 +00:00
Kernel: Rename Thread::tss to Thread::regs and add x86_64 support
We're using software context switches so calling this struct tss is somewhat misleading.
This commit is contained in:
committed by
Andreas Kling
parent
eba33f82b8
commit
f285241cb8
@@ -21,11 +21,7 @@ ProcessPagingScope::ProcessPagingScope(Process& process)
|
||||
ProcessPagingScope::~ProcessPagingScope()
|
||||
{
|
||||
InterruptDisabler disabler;
|
||||
#if ARCH(I386)
|
||||
Thread::current()->tss().cr3 = m_previous_cr3;
|
||||
#else
|
||||
PANIC("ProcessPagingScope::~ProcessPagingScope() not implemented");
|
||||
#endif
|
||||
Thread::current()->regs().cr3 = m_previous_cr3;
|
||||
write_cr3(m_previous_cr3);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user