Add --event-horizon=yes|no [yes] so that the limit on errors shown
can be disabled if desired.


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@414 a5019735-40e9-0310-863c-91ae7b9d1cf9
diff --git a/coregrind/vg_include.h b/coregrind/vg_include.h
index a480765..97d6b4e 100644
--- a/coregrind/vg_include.h
+++ b/coregrind/vg_include.h
@@ -218,8 +218,10 @@
 
 #define VG_CLO_MAX_SFILES 10
 
+/* Should we stop collecting errors if too many appear?  default: YES */
+extern Bool  VG_(clo_event_horizon);
 /* Shall we V-check addrs (they are always A checked too): default: YES */
-extern Bool VG_(clo_check_addrVs);
+extern Bool  VG_(clo_check_addrVs);
 /* Enquire about whether to attach to GDB at errors?   default: NO */
 extern Bool  VG_(clo_GDB_attach);
 /* Sanity-check level: 0 = none, 1 (default), > 1 = expensive. */