diff options
Diffstat (limited to 'src/arch/x86')
-rw-r--r-- | src/arch/x86/exception.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/arch/x86/exception.c b/src/arch/x86/exception.c index a281c54c1d..0f42fdf79f 100644 --- a/src/arch/x86/exception.c +++ b/src/arch/x86/exception.c @@ -554,8 +554,8 @@ struct intr_gate { /* Even though the vecX symbols are interrupt entry points just treat them like data to more easily get the pointer values in C. Because IDT entries - format splits the offset field up one can't use the linker to resolve - parts of a relecation on x86 ABI an array of pointers is used to gather + format splits the offset field up, one can't use the linker to resolve + parts of a relocation on x86 ABI. An array of pointers is used to gather the symbols. The IDT is initialized at runtime when exception_init() is called. */ extern u8 vec0[], vec1[], vec2[], vec3[], vec4[], vec5[], vec6[], vec7[]; |