git: 9front

Download patch

ref: c8e6639f535ec4c0b38538f3a39a9df87dfafc77
parent: 07c8338b6c1ea0b150725784eaad7cf1f5ef75b9
author: cinap_lenrek <cinap_lenrek@felloff.net>
date: Sat Jun 3 14:59:48 EDT 2017

kernel: make statistics counters skipscheds and preempts unsigned

--- a/sys/src/9/port/proc.c
+++ b/sys/src/9/port/proc.c
@@ -14,9 +14,9 @@
 int reprioritize(Proc*);
 
 ulong	delayedscheds;	/* statistics */
-long skipscheds;
-long preempts;
-ulong load;
+ulong	skipscheds;
+ulong	preempts;
+ulong	load;
 
 static struct Procalloc
 {
--