]> Git Repo - uclibc-ng.git/commitdiff
Minor cleanups
authorEric Andersen <[email protected]>
Mon, 4 Feb 2002 11:12:58 +0000 (11:12 -0000)
committerEric Andersen <[email protected]>
Mon, 4 Feb 2002 11:12:58 +0000 (11:12 -0000)
extra/Configs/Config.cross.arm.uclinux
extra/Configs/Config.m68k
extra/Configs/Config.m68k.coff
extra/Configs/Config.sparc

index b834a0e81c2f96d7747b7ebf012c28905a9dbfa1..19f13c36d322e4613138e640642754088094981b 100644 (file)
@@ -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.
index 4c0cc0d09fa86a57fcadbec3a3f0a3e6f2dab89e..41f1009fc1199076d433ab2e9dc750c2c0d90bfa 100644 (file)
@@ -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.
index 6cc9c8059642c36242c0577387c0f443659e8360..9e80e66c9d8cf1a2a2fec3e1a56fe701b3d2f1b4 100644 (file)
@@ -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.
index dcf165bba7077844ec0a90e4320d5e1dff244f71..aace380db5bc0b557c196fc149db642ff52bc737 100644 (file)
@@ -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.
This page took 0.0313 seconds and 4 git commands to generate.