Blame SOURCES/glibc-rh615090.patch

b40826
2010-07-27  Andreas Schwab  <schwab@redhat.com>
b40826
b40826
	* manual/memory.texi (Malloc Tunable Parameters): Document
b40826
	M_PERTURB.
b40826
b40826
Index: glibc-2.12-2-gc4ccff1/manual/memory.texi
b40826
===================================================================
b40826
--- glibc-2.12-2-gc4ccff1.orig/manual/memory.texi
b40826
+++ glibc-2.12-2-gc4ccff1/manual/memory.texi
b40826
@@ -702,6 +702,11 @@ be allocated via @code{mmap}.
b40826
 @item M_MMAP_MAX
b40826
 The maximum number of chunks to allocate with @code{mmap}.  Setting this
b40826
 to zero disables all use of @code{mmap}.
b40826
+@item M_PERTURB
b40826
+If non-zero, memory blocks are filled with values depending on some
b40826
+low order bits of this parameter when they are allocated (except when
b40826
+allocated by @code{calloc}) and freed.  This can be used to debug the
b40826
+use of uninitialized or freed heap memory.
b40826
 @end table
b40826
 
b40826
 @end deftypefun