diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2014-01-20 00:54:36 +0100 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2014-01-20 00:54:36 +0100 |
commit | cb0393181a80a9967c52ae73f07388d1f53666f7 (patch) | |
tree | b02256f4f433720c483b5d023dffe238977ae63a /sys/man | |
parent | 6c2e983d328874ea41cb35bacb510bf2709a229f (diff) |
malloc(2): update alloctag types
Diffstat (limited to 'sys/man')
-rw-r--r-- | sys/man/2/malloc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/man/2/malloc b/sys/man/2/malloc index 4ae226591..2218b4f06 100644 --- a/sys/man/2/malloc +++ b/sys/man/2/malloc @@ -29,16 +29,16 @@ void* calloc(ulong nelem, ulong elsize) ulong msize(void *ptr) .PP .B -void setmalloctag(void *ptr, ulong tag) +void setmalloctag(void *ptr, uintptr tag) .PP .B -ulong getmalloctag(void *ptr) +uintptr getmalloctag(void *ptr) .PP .B -void setrealloctag(void *ptr, ulong tag) +void setrealloctag(void *ptr, uintptr tag) .PP .B -ulong getrealloctag(void *ptr) +uintptr getrealloctag(void *ptr) .PP .B void* malloctopoolblock(void*) |