summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcinap_lenrek <cinap_lenrek@felloff.net>2017-06-03 18:59:48 +0200
committercinap_lenrek <cinap_lenrek@felloff.net>2017-06-03 18:59:48 +0200
commit94e26e7576fabcaacd8fa8f75c4f87f9eb6e56f3 (patch)
tree51f4077b9f0ab4411c3627660b45dfb7ab81bc4b
parent178e05f9b7dd9c7c47b9c575fdb151853e267867 (diff)
downloadplan9front-94e26e7576fabcaacd8fa8f75c4f87f9eb6e56f3.tar.xz
kernel: make statistics counters skipscheds and preempts unsigned
-rw-r--r--sys/src/9/port/proc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/src/9/port/proc.c b/sys/src/9/port/proc.c
index 5a98ac747..0c701fb8a 100644
--- a/sys/src/9/port/proc.c
+++ b/sys/src/9/port/proc.c
@@ -14,9 +14,9 @@ void updatecpu(Proc*);
int reprioritize(Proc*);
ulong delayedscheds; /* statistics */
-long skipscheds;
-long preempts;
-ulong load;
+ulong skipscheds;
+ulong preempts;
+ulong load;
static struct Procalloc
{