summaryrefslogtreecommitdiff
path: root/sys/man/2
diff options
context:
space:
mode:
authorcinap_lenrek <cinap_lenrek@felloff.net>2014-02-12 18:53:03 +0100
committercinap_lenrek <cinap_lenrek@felloff.net>2014-02-12 18:53:03 +0100
commitad38f0eb1cce3ea298b4641af13a070e224f9ade (patch)
tree97e79c23596bd9c60b6d5d5bbcc6dc0b8c32f7e9 /sys/man/2
parent872f83cebe6cc9234e9e672ad0408b9f59cf62bd (diff)
pool(2): fix ulong -> uintptr
Diffstat (limited to 'sys/man/2')
-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 */