
on all glibc systems (tested with x86 and x86_64 with a couple of C++ compilers). While not as ideal as the malloc_hooks method, it does have the advantage of working with threads. * Modified malloc_hooks component to properly follow prefix rule. No functionality changes * Make the memory framework only chose one component, and modify all components to set priority to 20, except malloc-interpose, which is at 10. This means that on Linux, malloc_hooks will be used unless threads are enabled, since I think malloc_hooks is a better design choice when we can use it This commit was SVN r6949.
26 строки
847 B
Makefile
26 строки
847 B
Makefile
#
|
|
# Copyright (c) 2004-2005 The Trustees of Indiana University.
|
|
# All rights reserved.
|
|
# Copyright (c) 2004-2005 The Trustees of the University of Tennessee.
|
|
# All rights reserved.
|
|
# Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
# University of Stuttgart. All rights reserved.
|
|
# Copyright (c) 2004-2005 The Regents of the University of California.
|
|
# All rights reserved.
|
|
# $COPYRIGHT$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
include $(top_srcdir)/config/Makefile.options
|
|
|
|
noinst_LTLIBRARIES = libmca_memory_malloc_hooks.la
|
|
|
|
# Source code files
|
|
libmca_memory_malloc_hooks_la_SOURCES = \
|
|
memory_malloc_hooks.c \
|
|
memory_malloc_hooks_component.c
|
|
libmca_memory_malloc_hooks_la_LIBADD = $(memory_malloc_hooks_LIBS)
|