summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorangelos <angelos@openbsd.org>2001-01-02 17:22:46 +0000
committerangelos <angelos@openbsd.org>2001-01-02 17:22:46 +0000
commitcfe70b55d33886990812fe330787b87749c44fc2 (patch)
treec9d17bfe12c24476184cc62012a613d13855ca80
parenthandle no-event as the end of event fetch loop; my fix for pr-1588 by Sam Isaacson <sbi@mobius.colorado.edu> (diff)
downloadwireguard-openbsd-cfe70b55d33886990812fe330787b87749c44fc2.tar.xz
wireguard-openbsd-cfe70b55d33886990812fe330787b87749c44fc2.zip
Make kb_calls u_long (art@ ok)
-rw-r--r--sys/sys/malloc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/sys/malloc.h b/sys/sys/malloc.h
index fd510d0e459..962b61187a5 100644
--- a/sys/sys/malloc.h
+++ b/sys/sys/malloc.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: malloc.h,v 1.30 2000/11/16 20:02:20 provos Exp $ */
+/* $OpenBSD: malloc.h,v 1.31 2001/01/02 17:22:46 angelos Exp $ */
/* $NetBSD: malloc.h,v 1.39 1998/07/12 19:52:01 augustss Exp $ */
/*
@@ -329,7 +329,7 @@ struct kmemusage {
struct kmembuckets {
caddr_t kb_next; /* list of free blocks */
caddr_t kb_last; /* last free block */
- long kb_calls; /* total calls to allocate this size */
+ u_long kb_calls; /* total calls to allocate this size */
long kb_total; /* total number of blocks allocated */
long kb_totalfree; /* # of free elements in this bucket */
long kb_elmpercl; /* # of elements in this sized allocation */