diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2017-06-03 18:59:48 +0200 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2017-06-03 18:59:48 +0200 |
commit | 94e26e7576fabcaacd8fa8f75c4f87f9eb6e56f3 (patch) | |
tree | 51f4077b9f0ab4411c3627660b45dfb7ab81bc4b | |
parent | 178e05f9b7dd9c7c47b9c575fdb151853e267867 (diff) | |
download | plan9front-94e26e7576fabcaacd8fa8f75c4f87f9eb6e56f3.tar.xz |
kernel: make statistics counters skipscheds and preempts unsigned
-rw-r--r-- | sys/src/9/port/proc.c | 6 |
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 { |