diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2020-10-09 22:05:32 +0200 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2020-10-09 22:05:32 +0200 |
commit | c7598b18f34bef66f56f87b28bda81465624e219 (patch) | |
tree | a5eb793071a3e297ec0fea1397a9a9b06ff03a24 /sys/src/9/kw | |
parent | 4a75ad5ec8a3a6990901aa5e814ee38964d158f8 (diff) |
kernel: get rid of unused ucallocb
the whole idea of a ucallocb() is bad, as even access to the
metadata header would be in uncached memory. also, it tuns out
that it was never used by anyone.
Diffstat (limited to 'sys/src/9/kw')
-rw-r--r-- | sys/src/9/kw/fns.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/sys/src/9/kw/fns.h b/sys/src/9/kw/fns.h index 50c6ea014..f74e993cc 100644 --- a/sys/src/9/kw/fns.h +++ b/sys/src/9/kw/fns.h @@ -110,10 +110,7 @@ uintptr mmukunmap(uintptr, uintptr, usize); extern void* mmuuncache(void*, usize); extern void* ucalloc(usize); extern void* ucallocalign(usize size, int align, usize span); -extern Block* ucallocb(int); extern void ucfree(void*); -extern void ucfreeb(Block*); -extern Block* uciallocb(int); /* * Things called from port. |