ref: 4e3e13e8b32aaf42bbf677b3705177123c1e6f2b
parent: e01ede176f4fc31aa768978e0c252ac386f4214c
author: mischief <mischief@offblast.org>
date: Wed Jun 13 07:59:14 EDT 2018
stats: read cputemp as C, set scale max to 100 C
--- a/sys/src/cmd/stats.c
+++ b/sys/src/cmd/stats.c
@@ -947,12 +947,12 @@
{ulong l;
- *vmax = sleeptime;
+ *vmax = 100;
l = m->temp[0];
if(l == ~0 || l == 0)
*v = 0;
else
- *v = (l-20)*27;
+ *v = l;
}
void
--
⑨