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

Kernel: Remove no-longer-used GDT selector from Thread

Now that we use software context switching, each thread no longer has
its own GDT entry (yay!) so we can get rid of this Thread member. :^)
This commit is contained in:
Andreas Kling 2020-07-02 21:30:18 +02:00
parent e7393bfb7b
commit 47f5b24cc8
2 changed files with 0 additions and 11 deletions

View file

@ -534,12 +534,6 @@ struct utsname {
char machine[UTSNAME_ENTRY_LEN];
};
struct [[gnu::packed]] FarPtr
{
u32 offset { 0 };
u16 selector { 0 };
};
struct iovec {
void* iov_base;
size_t iov_len;