diff options
author | Björn Gustavsson <[email protected]> | 2011-09-07 10:05:11 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2011-09-08 13:15:56 +0200 |
commit | 49854c414bc2d7ca0d538086476ca81c34d38fae (patch) | |
tree | dd0ccf3fd8f47abad00d757b0a2e3fd2f0eda9e4 /erts | |
parent | 6fae573fc291f4a77282b918cae346064bece80e (diff) | |
download | otp-49854c414bc2d7ca0d538086476ca81c34d38fae.tar.gz otp-49854c414bc2d7ca0d538086476ca81c34d38fae.tar.bz2 otp-49854c414bc2d7ca0d538086476ca81c34d38fae.zip |
erts/configure.in: Remove useless --disable-fixalloc option
./configure --disable-fixalloc does not do anytning any longer,
since there is no longer any "fix allocators" (in the original
sense).
Diffstat (limited to 'erts')
-rw-r--r-- | erts/configure.in | 7 | ||||
-rw-r--r-- | erts/emulator/sys/vxworks/sys.c | 3 |
2 files changed, 0 insertions, 10 deletions
diff --git a/erts/configure.in b/erts/configure.in index 3dbf98b876..2ae9c63215 100644 --- a/erts/configure.in +++ b/erts/configure.in @@ -259,13 +259,6 @@ AS_HELP_STRING([--enable-m32-build], esac ],enable_m32_build=no) -AC_ARG_ENABLE(fixalloc, -AS_HELP_STRING([--disable-fixalloc], [disable the use of fix_alloc])) -if test x${enable_fixalloc} = xno ; then - AC_DEFINE(NO_FIX_ALLOC,[], - [Define if you don't want the fix allocator in Erlang]) -fi - AC_SUBST(PERFCTR_PATH) AC_ARG_WITH(perfctr, AS_HELP_STRING([--with-perfctr=PATH], diff --git a/erts/emulator/sys/vxworks/sys.c b/erts/emulator/sys/vxworks/sys.c index c6e7b65f32..a59e4ec26a 100644 --- a/erts/emulator/sys/vxworks/sys.c +++ b/erts/emulator/sys/vxworks/sys.c @@ -2025,9 +2025,6 @@ int erl_memory_show(int p0, int p1, int p2, int p3, int p4, int p5, erts_printf("The memory block used by elib is save_malloc'ed " "at 0x%08x.\n", (unsigned int) alloc_pool_ptr); } -#ifdef NO_FIX_ALLOC - erts_printf("Fix_alloc is disabled in this build\n"); -#endif erts_printf("Statistics from elib_malloc:\n"); ELIB_LOCK; |