1
0
Fork 0
mirror of https://github.com/hermitcore/libhermit.git synced 2025-03-09 00:00:03 +01:00

remove typo

This commit is contained in:
Stefan Lankes 2015-07-12 19:22:07 +02:00
parent 2e3ea8a692
commit 71418322da

View file

@ -139,7 +139,7 @@ void gdt_install(void)
GDT_FLAG_RING3 | GDT_FLAG_SEGMENT | GDT_FLAG_CODESEG | GDT_FLAG_PRESENT, gran_cs);
/*
* Create TSS for each task at ring0 (we use these segments for task switching)
* Create TSS for each core (we use these segments for task switching)
*/
for(i=0; i<MAX_CORES; i++) {
task_state_segments[i].rsp0 = (size_t) &boot_stack + i * KERNEL_STACK_SIZE - 0x10;