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 | |
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')
-rw-r--r-- | sys/src/9/teg2/fns.h | 2 | ||||
-rw-r--r-- | sys/src/9/teg2/ts | 1 |
2 files changed, 0 insertions, 3 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. diff --git a/sys/src/9/teg2/ts b/sys/src/9/teg2/ts index 3573a7dba..b02b79045 100644 --- a/sys/src/9/teg2/ts +++ b/sys/src/9/teg2/ts @@ -66,7 +66,6 @@ misc # sdaoe sdscsi uarti8250 ucalloc - ucallocb # include vfp3 to use hardware fp, otherwise include softfpu vfp3 # softfpu |