summaryrefslogtreecommitdiffstats
path: root/translate.cxx
diff options
context:
space:
mode:
authorfche <fche>2006-01-15 17:26:18 +0000
committerfche <fche>2006-01-15 17:26:18 +0000
commit315b86df3e95c631b678d98b5d0ca7a380f1fed4 (patch)
tree3896e5c0aae285f45f04796c27dcc2a3e952dcae /translate.cxx
parent2cfb0e462faa1bbfe585cdddc46ae70c1650cb58 (diff)
downloadsystemtap-steved-315b86df3e95c631b678d98b5d0ca7a380f1fed4.tar.gz
systemtap-steved-315b86df3e95c631b678d98b5d0ca7a380f1fed4.tar.xz
systemtap-steved-315b86df3e95c631b678d98b5d0ca7a380f1fed4.zip
2006-01-15 Frank Ch. Eigler <fche@elastic.org>
PR 2148 * translate.cxx (MAXERRORS): Actually the max should be 0, so first error aborts session. * Revert last stp_exit change.
Diffstat (limited to 'translate.cxx')
-rw-r--r--translate.cxx2
1 files changed, 1 insertions, 1 deletions
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";