Remove pre-SMP TSS code

This commit is contained in:
2025-12-30 01:50:47 +01:00
parent b279774bd6
commit d861ab56c4
3 changed files with 0 additions and 11 deletions

View File

@@ -1,6 +1,5 @@
c += amd64/bootmain.c \ c += amd64/bootmain.c \
amd64/init.c \ amd64/init.c \
amd64/tss.c \
amd64/io.c \ amd64/io.c \
amd64/debug.c \ amd64/debug.c \
amd64/spin_lock.c \ amd64/spin_lock.c \
@@ -19,7 +18,6 @@ S += amd64/intr_stub.S \
o += amd64/bootmain.o \ o += amd64/bootmain.o \
amd64/init.o \ amd64/init.o \
amd64/tss.o \
amd64/io.o \ amd64/io.o \
amd64/debug.o \ amd64/debug.o \
amd64/spin_lock.o \ amd64/spin_lock.o \

View File

@@ -1,7 +0,0 @@
#include <amd64/tss.h>
#include <aux/compiler.h>
#include <libk/std.h>
ALIGNED (16) static volatile struct tss tss;
volatile struct tss* amd64_get_tss (void) { return &tss; }

View File

@@ -16,6 +16,4 @@ struct tss {
uint16_t iopb_off; uint16_t iopb_off;
} PACKED; } PACKED;
volatile struct tss* amd64_get_tss (void);
#endif // _KERNEL_AMD64_TSS_H #endif // _KERNEL_AMD64_TSS_H