summaryrefslogtreecommitdiff
path: root/extra/Configs
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-02-04 11:12:58 +0000
committerEric Andersen <andersen@codepoet.org>2002-02-04 11:12:58 +0000
commit4971b11759683f19fca1b7df7c12b6d9a94828fe (patch)
tree59eff1a910402ce4baf86bbd5aa24d331e57bd0c /extra/Configs
parent562f2ff2c5a1672f54c27ab33e091e5eac1c82db (diff)
Minor cleanups
Diffstat (limited to 'extra/Configs')
-rw-r--r--extra/Configs/Config.cross.arm.uclinux5
-rw-r--r--extra/Configs/Config.m68k5
-rw-r--r--extra/Configs/Config.m68k.coff5
-rw-r--r--extra/Configs/Config.sparc10
4 files changed, 20 insertions, 5 deletions
diff --git a/extra/Configs/Config.cross.arm.uclinux b/extra/Configs/Config.cross.arm.uclinux
index b834a0e81..19f13c36d 100644
--- a/extra/Configs/Config.cross.arm.uclinux
+++ b/extra/Configs/Config.cross.arm.uclinux
@@ -102,6 +102,11 @@ MALLOC = malloc-simple
#MALLOC = malloc
#MALLOC = malloc-930716
+# Having brk allows one to use malloc-930716, which is an order
+# of magnitude faster then "malloc" for most allocations, but
+# will do very bad things on MMU-less systems...
+EXCLUDE_BRK=true
+
# If you want to collect common syscall code into one function, set to this to
# `true'. Set it to false otherwise.
# On i386 this saves about than 2.8k over all syscalls.
diff --git a/extra/Configs/Config.m68k b/extra/Configs/Config.m68k
index 4c0cc0d09..41f1009fc 100644
--- a/extra/Configs/Config.m68k
+++ b/extra/Configs/Config.m68k
@@ -102,6 +102,11 @@ MALLOC = malloc-simple
#MALLOC = malloc
#MALLOC = malloc-930716
+# Having brk allows one to use malloc-930716, which is an order
+# of magnitude faster then "malloc" for most allocations, but
+# will do very bad things on MMU-less systems...
+EXCLUDE_BRK=true
+
# If you want to collect common syscall code into one function, set to this to
# `true'. Set it to false otherwise.
# On i386 this saves about than 2.8k over all syscalls.
diff --git a/extra/Configs/Config.m68k.coff b/extra/Configs/Config.m68k.coff
index 6cc9c8059..9e80e66c9 100644
--- a/extra/Configs/Config.m68k.coff
+++ b/extra/Configs/Config.m68k.coff
@@ -102,6 +102,11 @@ MALLOC = malloc-simple
#MALLOC = malloc
#MALLOC = malloc-930716
+# Having brk allows one to use malloc-930716, which is an order
+# of magnitude faster then "malloc" for most allocations, but
+# will do very bad things on MMU-less systems...
+EXCLUDE_BRK=true
+
# If you want to collect common syscall code into one function, set to this to
# `true'. Set it to false otherwise.
# On i386 this saves about than 2.8k over all syscalls.
diff --git a/extra/Configs/Config.sparc b/extra/Configs/Config.sparc
index dcf165bba..aace380db 100644
--- a/extra/Configs/Config.sparc
+++ b/extra/Configs/Config.sparc
@@ -99,13 +99,13 @@ LOCALE_DIR = "/usr/share/uClibc-locale/"
# It is actually smaller than "malloc", at least on i386. Right now, it
# only works on i386 (and maybe m68k) because it needs sbrk.
#MALLOC = malloc-simple
-MALLOC = malloc
-#MALLOC = malloc-930716
+#MALLOC = malloc
+MALLOC = malloc-930716
-# This architecture currently does not implement the brk syscall
# Having brk allows one to use malloc-930716, which is an order
-# of magnitude faster then "malloc" for most allocations....
-EXCLUDE_BRK=true
+# of magnitude faster then "malloc" for most allocations, but
+# will do very bad things on MMU-less systems...
+EXCLUDE_BRK=false
# If you want to collect common syscall code into one function, set to this to
# `true'. Set it to false otherwise.