1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 08:08:12 +00:00

Kernel: Implement lazy FPU state restore.

This commit is contained in:
Andreas Kling 2019-01-25 07:52:44 +01:00
parent 2279f5eaa6
commit dfdca9d2a7
8 changed files with 50 additions and 9 deletions

View file

@ -138,10 +138,6 @@ void init()
gdt_init();
idt_init();
#ifndef NO_FPU
asm volatile("fninit");
#endif
VFS::initialize_globals();
vfs = new VFS;