kernel: make statistics counters skipscheds and preempts unsigned

This commit is contained in:
cinap_lenrek 2017-06-03 18:59:48 +02:00
parent 178e05f9b7
commit 94e26e7576

View file

@ -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
{