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/teg2/fns.h | |
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/teg2/fns.h')
-rw-r--r-- | sys/src/9/teg2/fns.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sys/src/9/teg2/fns.h b/sys/src/9/teg2/fns.h index 801656c0e..0c8733a55 100644 --- a/sys/src/9/teg2/fns.h +++ b/sys/src/9/teg2/fns.h @@ -164,10 +164,8 @@ uintptr mmukmap(uintptr, uintptr, usize); uintptr mmukunmap(uintptr, uintptr, usize); extern void* mmuuncache(void*, usize); extern void* ucalloc(usize); -extern Block* ucallocb(int); extern void* ucallocalign(usize size, int align, int span); extern void ucfree(void*); -extern void ucfreeb(Block*); /* * Things called from port. |