Fix some issues uncovered by the spawn stress test.

This commit is contained in:
Andreas Kling 2018-12-26 22:02:24 +01:00
commit 3f3535213b
Notes: sideshowbarker 2024-07-19 16:06:57 +09:00
5 changed files with 9 additions and 7 deletions

View file

@ -34,7 +34,7 @@ word gdt_alloc_entry()
void gdt_free_entry(word entry)
{
s_gdt_freelist->append(entry);
s_gdt_freelist->unchecked_append(entry);
}
extern "C" void handle_irq();