From ad38f0eb1cce3ea298b4641af13a070e224f9ade Mon Sep 17 00:00:00 2001 From: cinap_lenrek Date: Wed, 12 Feb 2014 18:53:03 +0100 Subject: pool(2): fix ulong -> uintptr --- sys/man/2/pool | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'sys/man/2') 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 */ -- cgit v1.2.3