ref: c2b91d6254680b375280c0673d1b330fa2f11202
parent: 63f3fe9c262b1063e59d355322ccfd39ccd41a96
author: cinap_lenrek <cinap_lenrek@felloff.net>
date: Sat Jul 8 08:40:31 EDT 2023
pc64: no need to _stts() in squidboy() FPU is already disabled by cpuidentify() -> fpuinit(), fpuprocrestore() disables FPU when switching to a process.
--- a/sys/src/9/pc64/squidboy.c
+++ b/sys/src/9/pc64/squidboy.c
@@ -8,8 +8,6 @@
#include "mp.h"
-extern void _stts(void);
-
static void
squidboy(Apic* apic)
{
@@ -25,7 +23,6 @@
lapicinit(apic);
lapiconline();
timersinit();
- _stts();
schedinit();
}
--
⑨