We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6bf8cc commit 09b030dCopy full SHA for 09b030d
kernel/src/kernel/memory/gdt.cpp
@@ -74,11 +74,6 @@ void gdtInitializeLocal()
74
memorySetBytes(&localGdt->tss, 0, sizeof(g_tss));
75
localGdt->tss.rsp0 = 0;
76
77
- logInfo("gdt last entry: %x", &localGdt->entry[4]);
78
- logInfo("gdt tss entry: %x", &localGdt->entryTss);
79
- logInfo("tss: %x", &localGdt->tss);
80
- hexDump8(&localGdt->tss);
81
-
82
// Load the GDT & TSS
83
asm volatile("lgdt %0" : : "m" (localGdt->ptr));
84
asm volatile(
0 commit comments