diff options
| author | Jeroen Ruigrok van der Werven <asmodai@FreeBSD.org> | 2002-04-08 10:37:27 +0000 |
|---|---|---|
| committer | Jeroen Ruigrok van der Werven <asmodai@FreeBSD.org> | 2002-04-08 10:37:27 +0000 |
| commit | 73d75acaa0145be81a7aca82e61631883edaf8f5 (patch) | |
| tree | 8248b84b3fc378e8a978e9fe70fce68e1891904e | |
| parent | 32893f634bf12adcc4cb6f3218a6ff32118e3e85 (diff) | |
Notes
| -rw-r--r-- | sys/sys/malloc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/sys/malloc.h b/sys/sys/malloc.h index 76c57254ae5b..23d21336f881 100644 --- a/sys/sys/malloc.h +++ b/sys/sys/malloc.h @@ -59,7 +59,7 @@ struct malloc_type { long ks_limit; /* most that are allowed to exist */ long ks_size; /* sizes of this thing that are allocated */ long ks_inuse; /* # of packets of this type currently in use */ - int64_t ks_calls; /* total packets of this type ever allocated */ + uint64_t ks_calls; /* total packets of this type ever allocated */ long ks_maxused; /* maximum number ever used */ u_long ks_magic; /* if it's not magic, don't touch it */ const char *ks_shortdesc; /* short description */ |
