summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sys/man/2/pool8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/man/2/pool b/sys/man/2/pool
index 544fcf565..12a0a02ea 100644
--- a/sys/man/2/pool
+++ b/sys/man/2/pool
@@ -133,10 +133,10 @@ structure itself provides much of the setup interface.
typedef struct Pool Pool;
struct Pool {
char* name;
- ulong maxsize; /* of entire Pool */
- ulong cursize; /* of Pool */
- ulong curfree; /* total free bytes in Pool */
- ulong curalloc; /* total allocated bytes in Pool */
+ uintptr maxsize; /* of entire Pool */
+ uintptr cursize; /* of Pool */
+ uintptr curfree; /* total free bytes in Pool */
+ uintptr curalloc; /* total allocated bytes in Pool */
ulong minarena; /* smallest size of new arena */
ulong quantum; /* allocated blocks should be multiple of */
ulong minblock; /* smallest newly allocated block */