Moved Robert's stack tracking code out of m_aspacemgr into a new module
m_stacks, because it's a nicely distinct and stand-alone piece of
functionality.  This happily removes m_aspacemgr's dependence on
m_mallocfree (there was an apparent dependence due to the #include, even if
it didn't manifest itself in practice -- very important!) and m_options (not
so important).



git-svn-id: svn://svn.valgrind.org/valgrind/trunk@4009 a5019735-40e9-0310-863c-91ae7b9d1cf9
diff --git a/coregrind/Makefile.am b/coregrind/Makefile.am
index 69b3b46..8a1b9c4 100644
--- a/coregrind/Makefile.am
+++ b/coregrind/Makefile.am
@@ -63,6 +63,7 @@
 	pub_core_sigframe.h	\
 	pub_core_signals.h	\
 	pub_core_skiplist.h	\
+	pub_core_stacks.h	\
 	pub_core_stacktrace.h	\
 	pub_core_syswrap.h	\
 	pub_core_threadmodel.h	\
@@ -117,6 +118,7 @@
 	m_redir.c \
 	m_signals.c \
 	m_skiplist.c \
+	m_stacks.c \
 	m_stacktrace.c \
 	m_syscall.c \
 	m_threadmodel.c \