diff options
author | ian <ian> | 2023-07-28 08:43:09 +0000 |
---|---|---|
committer | ian <ian> | 2023-07-28 08:43:09 +0000 |
commit | 01ed65f720a32e35d12c7f4d68297e3599157846 (patch) | |
tree | 94620eb25bdde9994834c2085a8c3b8f344f5bfd /sys/include/arch/amd64/gdt.h | |
parent | 1809fe87ad70cf537d110845dd57fdf20a6614fd (diff) |
kernel: Cleanup arch abstraction layer
git-svn-id: https://svn.vegaa.systems/svn/vega-Vega/trunk@29 a8a8aea2-181d-ee11-89e8-15fd0e089fc4
Diffstat (limited to 'sys/include/arch/amd64/gdt.h')
-rw-r--r-- | sys/include/arch/amd64/gdt.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/include/arch/amd64/gdt.h b/sys/include/arch/amd64/gdt.h index 756e2a6..2b7f308 100644 --- a/sys/include/arch/amd64/gdt.h +++ b/sys/include/arch/amd64/gdt.h @@ -74,7 +74,7 @@ gdt_load(struct gdtr *gdtr) ); } -extern struct gdt_entry g_dmmy_gdt[256]; -extern struct gdtr g_early_gdtr; +extern struct gdt_entry g_gdt[256]; +extern struct gdtr g_gdtr; #endif /* !AMD64_GDT_H_ */ |