kernel: make statistics counters skipscheds and preempts unsigned
This commit is contained in:
parent
178e05f9b7
commit
94e26e7576
1 changed files with 3 additions and 3 deletions
|
@ -14,9 +14,9 @@ void updatecpu(Proc*);
|
||||||
int reprioritize(Proc*);
|
int reprioritize(Proc*);
|
||||||
|
|
||||||
ulong delayedscheds; /* statistics */
|
ulong delayedscheds; /* statistics */
|
||||||
long skipscheds;
|
ulong skipscheds;
|
||||||
long preempts;
|
ulong preempts;
|
||||||
ulong load;
|
ulong load;
|
||||||
|
|
||||||
static struct Procalloc
|
static struct Procalloc
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue