From 315b86df3e95c631b678d98b5d0ca7a380f1fed4 Mon Sep 17 00:00:00 2001 From: fche Date: Sun, 15 Jan 2006 17:26:18 +0000 Subject: 2006-01-15 Frank Ch. Eigler PR 2148 * translate.cxx (MAXERRORS): Actually the max should be 0, so first error aborts session. * Revert last stp_exit change. --- translate.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'translate.cxx') diff --git a/translate.cxx b/translate.cxx index d0b2a882..2b0e44fa 100644 --- a/translate.cxx +++ b/translate.cxx @@ -3590,7 +3590,7 @@ translate_pass (systemtap_session& s) s.op->newline() << "#define MAXMAPENTRIES 2048"; s.op->newline() << "#endif"; s.op->newline() << "#ifndef MAXERRORS"; - s.op->newline() << "#define MAXERRORS 1"; + s.op->newline() << "#define MAXERRORS 0"; s.op->newline() << "#endif"; s.op->newline() << "#ifndef MAXSKIPPED"; s.op->newline() << "#define MAXSKIPPED 100"; -- cgit