OSDN Git Service

stick with one malloc implementation for all
authorWaldemar Brodkorb <wbx@openadk.org>
Thu, 19 Mar 2015 18:51:09 +0000 (13:51 -0500)
committerWaldemar Brodkorb <wbx@openadk.org>
Fri, 17 Apr 2015 18:43:50 +0000 (13:43 -0500)
commit0940a5d9dcdbc9e1c20718f928e24d5f6d85ecb9
treee6f3c3606163c9f108fc3619fc79e99f8a96c8af
parentd55e4152afd3093002f296c86161ac31cebc9a0f
stick with one malloc implementation for all

Supporting three different malloc implementations seems
a big overhead to be avoided. Just use malloc, which
works for MMU/no-MMU devices just fine.
29 files changed:
docs/Glibc_vs_uClibc_Differences.txt
extra/Configs/Config.in
extra/Configs/defconfigs/arc/tb10x_defconfig
include/malloc.h
libc/stdlib/Makefile.in
libc/stdlib/malloc-simple/Makefile [deleted file]
libc/stdlib/malloc-simple/Makefile.in [deleted file]
libc/stdlib/malloc-simple/alloc.c [deleted file]
libc/stdlib/malloc-simple/calloc.c [deleted file]
libc/stdlib/malloc-simple/free.c [deleted file]
libc/stdlib/malloc-simple/malloc.c [deleted file]
libc/stdlib/malloc-simple/memalign.c [deleted file]
libc/stdlib/malloc-simple/realloc.c [deleted file]
libc/stdlib/malloc-standard/Makefile [deleted file]
libc/stdlib/malloc-standard/Makefile.in [deleted file]
libc/stdlib/malloc-standard/calloc.c [deleted file]
libc/stdlib/malloc-standard/free.c [deleted file]
libc/stdlib/malloc-standard/mallinfo.c [deleted file]
libc/stdlib/malloc-standard/malloc.c [deleted file]
libc/stdlib/malloc-standard/malloc.h [deleted file]
libc/stdlib/malloc-standard/mallopt.c [deleted file]
libc/stdlib/malloc-standard/memalign.c [deleted file]
libc/stdlib/malloc-standard/realloc.c [deleted file]
libc/stdlib/malloc/Makefile.in
libc/stdlib/malloc/malloc.c
libpthread/linuxthreads/ptfork.c
test/malloc/tst-malloc.c
test/malloc/tst-mcheck.c
test/test-skeleton.c