|
From: <sv...@va...> - 2008-05-14 06:49:52
|
Author: sewardj
Date: 2008-05-14 07:49:51 +0100 (Wed, 14 May 2008)
New Revision: 8069
Log:
Merge fix for #161487 (number of suppression files is limited to 10)
Modified:
branches/VALGRIND_3_3_BRANCH/coregrind/pub_core_options.h
branches/VALGRIND_3_3_BRANCH/docs/xml/manual-core.xml
Modified: branches/VALGRIND_3_3_BRANCH/coregrind/pub_core_options.h
===================================================================
--- branches/VALGRIND_3_3_BRANCH/coregrind/pub_core_options.h 2008-05-14 06:43:10 UTC (rev 8068)
+++ branches/VALGRIND_3_3_BRANCH/coregrind/pub_core_options.h 2008-05-14 06:49:51 UTC (rev 8069)
@@ -40,7 +40,7 @@
#include "pub_tool_options.h"
/* The max number of suppression files. */
-#define VG_CLO_MAX_SFILES 10
+#define VG_CLO_MAX_SFILES 100
/* Should we stop collecting errors if too many appear? default: YES */
extern Bool VG_(clo_error_limit);
Modified: branches/VALGRIND_3_3_BRANCH/docs/xml/manual-core.xml
===================================================================
--- branches/VALGRIND_3_3_BRANCH/docs/xml/manual-core.xml 2008-05-14 06:43:10 UTC (rev 8068)
+++ branches/VALGRIND_3_3_BRANCH/docs/xml/manual-core.xml 2008-05-14 06:49:51 UTC (rev 8069)
@@ -885,8 +885,8 @@
</term>
<listitem>
<para>Specifies an extra file from which to read descriptions of
- errors to suppress. You may use as many extra suppressions files
- as you like.</para>
+ errors to suppress. You may use up to 100 extra suppression
+ files.</para>
</listitem>
</varlistentry>
|