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

Kernel: Add TSS64 and Desciptor for 64-bit

This commit is contained in:
Hendiadyoin1 2021-03-07 20:36:12 +01:00 committed by Andreas Kling
parent 009b196a04
commit 5a8cc07485
2 changed files with 115 additions and 2 deletions

View file

@ -672,7 +672,7 @@ class Processor {
Atomic<u32, AK::MemoryOrder::memory_order_relaxed> m_in_critical;
static Atomic<u32> s_idle_cpu_mask;
TSS32 m_tss;
TSS m_tss;
static FPUState s_clean_fpu_state;
CPUFeature m_features;
static volatile u32 g_total_processors; // atomic
@ -1140,5 +1140,4 @@ ALWAYS_INLINE void clac()
asm volatile("clac" ::
: "cc");
}
}